我正在尝试使用JDBC连接到数据库 我的代码: -
public static Connection getConnection() {
String dbName = "test";
String userName = "test";
String password = "";
Connection connection = null;
try {
Class.forName("com.myqsl.jdbc.Driver");
connection = DriverManager.getConnection("jdbc:mysql://localhost/" + dbName, userName, password);
} catch (Exception e) {
// connection = null;
System.out.println("error");
e.printStackTrace();
}
return connection;
}
我得到了java.lang.ClassNotFoundException。我尝试将rt.jar附加到类文件编辑器源,但现在获取源附件不包含文件drivermanager.class的源,只是不知道如何继续
注意: - 使用eclipse而不是调试模式。