0
我嘗試連接到我的BD 這是我的代碼的java連接到SQL Server 2008 Express的
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());
}
}
}
我得到類未發現異常:拋出java.lang.ClassNotFoundException:com.microsoft.sqlserver.jdbc。運行後SQLServerDriver ....
如何在sql server上正確連接?
感謝弗蘭克
檢查此stackoverflow.com問題:(http://stackoverflow.com/questions/2451892/how-do-i-connect-to-a-sql-server-2008-database-in-java-with-jdbc) 。這正是你所要求的。 – gkaran89 2012-04-08 20:10:51