gpt4 book ai didi

java - 在 Java 中连接到数据库

转载 作者:太空宇宙 更新时间:2023-11-03 10:42:10 27 4
gpt4 key购买 nike

我正在研究 OS X、Eclipse、Java 8 和 MySQLWorkBench。

我意识到最后一个数据库(我可以说模式吗?),名为“mydb”,位于 localhost:3306(我不知道它到底是什么意思)...

现在我想通过 java 程序连接到这个数据库。我正在尝试

Connection conn = DriverManager.getConnection("jdbc:mysql://localhost:3306/mydb");

跟在错误信息后面

Exception in thread "main" java.sql.SQLException:
No suitable driver found for jdbc:mysql://localhost:3306/mydb

谁能告诉我哪里出了问题?

最佳答案

您需要下载jdbc驱动并将其添加到您的项目中

Download the driver from here

Example on how to add the driver in eclipse

还需要在连接语句中包含用户名和密码,并确保调用 Class for name 以加载驱动程序

Class.forName("com.mysql.jdbc.Driver");

DriverManager.getConnection(DB_URL,USER,PASS);

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

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