没有连接上
public String connMySQLDateBase(String ip , String prot , String datebase ,
String username , String password){
try {
String driverName="org.gjt.mm.mysql.Driver";
String url="jdbc:mysql://"+ip+":"+prot+"/"+datebase;
Class.forName(driverName);
System.out.println("load driver success");
DriverManager.getConnection(url,username,password);
return "恭喜,连接MySQL数据库成功!";
} catch (Exception e) {
return "连接出现异常";
}
}
检查一下你的url最后写的数据库对么.再检查一下你的密码正确么
数据库就是那个create database test;
你的url应该是jdbc:mysql:///test
应该是用户名密码不正确
估计是 数据库名错误了 数据库名 应该是 test
连接出错,检查下用户名和密码