-1
當我嘗試用下面的代碼連接到我的數據庫:錯誤連接到SQL Server數據庫
try
{
String connectionUrl = "jdbc:sqlserver://192.168.0.78;instanceName=SQL2014;databaseName=GIDS;user=sa;password=invent";
Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver");
Connection con = DriverManager.getConnection(connectionUrl);
System.out.println("Database connection = "+con);
}
catch(Exception e)
{
e.printStackTrace();
System.out.println("Error connecting to database. Error: "+e.getMessage());
}
我得到以下異常:
Error: com.microsoft.sqlserver.jdbc.SQLServerDriver
我在做什麼錯?
編譯期間沒有錯誤 –
爲什麼'php'在標籤中? –
添加完整的堆棧跟蹤。 – Jens