當我嘗試如下所示:
Class.forName(「com.mysql.jdbc.Driver」)。newInstance(); DriverManager.getConnection(「jdbc:mysql://192.168.2.116:3306/SocialFamilyTree」);
如何使用java jdbc連接到本地SQL數據庫
我得到一個錯誤:
com.mysql.jdbc.exceptions.jdbc4.CommunicationsException:通信鏈路故障
嘗試:
try{
Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver").newInstance();
DriverManager.getConnection("jdbc:sqlserver://localhost:1433");
}catch(Exception e){
System.out.println("Couldn't get database connection.");
e.printStackTrace();
}
,並得到:
Couldn't get database connection.
Oct 06, 2012 11:15:37 PM com.microsoft.sqlserver.jdbc.SQLServerConnection <init>
你有MySQL的開始呢? – Satya
@Satya你能更具體嗎?我有SQL Server Management Studio正在運行。你是這個意思嗎? – Mike
可能的重複http://stackoverflow.com/questions/2983248/com-mysql-jdbc-exceptions-jdbc4-communicationsexception-communications-link-fai – sakthisundar