gpt4 book ai didi

java - 找不到适用于 jdbc :mysql//localhost/sakila 的合适驱动程序

转载 作者:行者123 更新时间:2023-11-29 09:42:16 24 4
gpt4 key购买 nike

我正在尝试设置 JDBC,但收到此错误。

我尝试在 pom.xml 中添加依赖项,甚至 jar 文件都不起作用。我尝试了前面问题中提到的方法,没有任何效果。

public class FilmLength {

public static void main(String[] args) throws SQLException {
Connection dbCon = null;
PreparedStatement st = null;
ResultSet rs = null;
String url = "jdbc:mysql//localhost:3306/sakila";
String username = "devuser";
String password = "Demo@123";
String query = "select * from film ";


try {
Class.forName("com.mysql.jdbc.Driver");
dbCon = DriverManager.getConnection(url,username,password);
st = dbCon.prepareStatement(query);
rs = st.executeQuery();
while(rs.next()) {
String title = rs.getString(1);
System.out.println(title);
}
} catch (Exception e) {

e.printStackTrace();
}
finally {
dbCon.close();
st.close();
rs.close();
}



}

}

最佳答案

而不是String url = "jdbc:mysql//localhost:3306/sakila";

应该是String url = "jdbc:mysql://localhost:3306/sakila";

关于java - 找不到适用于 jdbc :mysql//localhost/sakila 的合适驱动程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56380584/

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