次のようなことを試してみると、
Class.forName( "com.mysql.jdbc.Driver")。newInstance(); DriverManager.getConnection( "jdbc:mysql://192.168.2.116:3306 / SocialFamilyTree");
エラーが発生します:
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>