這兩天用java分別連接mysql和sql server2008代碼,剛開始都是有錯,現在找到了在 自己機器上成功連接的代碼:
1. mysql
Class.forName("com.mysql.jdbc.Driver").newInstance();
String url="jdbc:mysql://localhost:3306/website?characterEncoding=utf8";//website為數據庫名;讀取mysql中中文字符
String user="root";//登錄mysql的用戶名和密碼
String pwd="123456";
con=DriverManager.getConnection(url,user,pwd);
2. sql server2008
Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver").newInstance();
String url="jdbc:sqlserver://localhost:1433;DatabaseName=website";
String user="sa";//登錄sql server的用戶名和密碼
String pwd="123456";
con=DriverManager.getConnection(url,user,pwd);