BDに接続しようとしていますこれは私のコードです
public class JavaSQLTest {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
try {
Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver");
String connectionUrl = "jdbc:sqlserver://FRANK-PC\\SQLEXPRESS" +
"databaseName=Pendu;";
Connection con = DriverManager.getConnection(connectionUrl);
} catch (SQLException e) {
System.out.println("SQL Exception: "+ e.toString());
} catch (ClassNotFoundException cE) {
System.out.println("Class Not Found Exception: "+ cE.toString());
}
}
}
実行後にClassNotFound Exception:java.lang.ClassNotFoundException:com.microsoft.sqlserver.jdbc.SQLServerDriverが発生します。
SQLサーバーに正しく接続する方法???
ありがとうフランク