时间:2021-07-01 10:21:17 帮助过:52人阅读
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);