gpt4 book ai didi

java - 使用 JDBC 连接到 MySQL 数据库

转载 作者:行者123 更新时间:2023-11-28 22:42:20 25 4
gpt4 key购买 nike

我有一段简单的代码需要连接到 mysql 数据库并执行查询。

try {
conn =
DriverManager.getConnection("jdbc:mysql://localhost/test?user=root&password=1234");

Statement stm = conn.createStatement();
stm.executeQuery(query);
return true;

这段代码在一个只有一个 void main 类的测试项目中工作得很好。但是在我的 Web 应用程序项目中,我使用的是 apache tomcat,并且相同的代码显示错误:

SQLException: No suitable driver found for jdbc:mysql://localhost/test?user=root&password=1234

我已经添加了 jar,类路径的一切。因为我正在使用 tomcat,所以我需要做一些特别的事情吗?谢谢,德拉戈斯

最佳答案

使用:

Class.forName("com.mysql.jdbc.Driver");
conn = DriverManager.getConnection("jdbc:mysql://localhost:3306/test?user=root&password=1234");

关于java - 使用 JDBC 连接到 MySQL 数据库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26575669/

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