3 回答
qq_无_奈_0
TA贡献18条经验 获得超3个赞
Connection con=null;
Statement stat=null;
ResultSet rs=null;
try {
Class.forName("com.mysql.jdbc.Driver");
} catch (ClassNotFoundException e) {
e.printStackTrace();
}
try {
con=DriverManager.getConnection("jdbc:mysql://localhost:3306/test","root","root");
stat=con.createStatement();
这是在servlet连接数据库的操作,需要四个属性,driver:com.mysql.jdbc.Driver,URL:jdbc:mysql://localhost:3306/test,username:你数据库设置的name,password:你数据库设置的密码
添加回答
举报
0/150
提交
取消