gpt4 book ai didi

Java MySQL 连接

转载 作者:塔克拉玛干 更新时间:2023-11-03 02:00:30 25 4
gpt4 key购买 nike

<分区>

Possible Duplicate:
Mysql JDBC driver ClassNotFoundException

我使用一个函数连接到 Linux 上的 MySQL 服务器:

protected void connectMYSQL() {
if (!this.userName.isEmpty() && !this.password.isEmpty() && !this.URL.isEmpty()) {
try {
try {
Class.forName("com.mysql.jdbc.Driver").newInstance();
} catch (Exception ex2) {
System.out.println("class.forname exception : " + ex2);
return;
}
connection = DriverManager.getConnection(URL, userName, password);
} catch(SQLException ex) {
System.out.println("can not connect to mysql : " + ex);
}
}
}

有变量

userName = root
password = xxxxxxxxxx
URL = jdbc:mysql://127.0.0.1/parkDevelop?profileSQL=true

但是我遇到了一个错误

class.forname exception : java.lang.ClassNotFoundException: com.mysql.jdbc.Driver

当我删除行 Class.forName("com.mysql.jdbc.Driver").newInstance(); 这次我收到连接失败的错误消息。

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com