我是一名学生,正在学习 Java 课程,但我被一个无法解决的错误难住了。
上面提到的错误是
No suitable driver found for jdbc.mysql
我已经导入了库并在代码中指定了它,我还尝试了用户在 stackoverflow 上发布的许多解决方案,但没有。如果有人有任何进一步的建议帮助将不胜感激
我的代码
(我不得不更改我的 Xampp 服务器配置文件以侦听端口 8080,因为 80 被 PID4“系统”占用)
public class DBConnect {
String DB_URL = "jdbc.mysql://localhost:3306/phpmyadmin/BCStationary?";
public DBConnect() throws ClassNotFoundException {
Connection conn = null;
try {
DriverManager.registerDriver(new com.mysql.jdbc.Driver());
Class.forName("com.mysql.jdbc.Driver");
conn = DriverManager.getConnection(DB_URL, "root", "");
System.out.println("Connection Successful");
} catch (SQLException ex) {
System.out.println("Conn error ");
Logger.getLogger(DBConnect.class.getName()).log(Level.SEVERE, null, ex);
}
}
}
慕妹3146593
繁花不似锦
相关分类