gpt4 book ai didi

java - 无法从 Eclipse DataSource Explorer 连接到 MySQl 数据库

转载 作者:塔克拉玛干 更新时间:2023-11-01 22:32:02 24 4
gpt4 key购买 nike

http://motionsharing.com/site/download/acefad55f1e81e456d71a7448b278915

无法从 Eclipse DataSource Explorer 连接到 MySQl 数据库。

我调整了合适的驱动程序,但我无法连接。P.S.:我可以连接到 derby 数据库,也可以连接到 mysql 数据库,但只能通过代码连接,但我想从 Data Source Explorer 连接到 mysql 数据库以获得创建表等的可能性。

怎么了?

我可以通过代码连接。

public static void main(String args[]) {
try {
Class.forName("com.mysql.jdbc.Driver");
System.out.println("Driver loading success!");
String url = "jdbc:mysql://localhost:3306/mydb";
String name = "root";
String password = "root";
try {
Connection con = DriverManager.getConnection(url, name, password);
System.out.println("Connected.");
con.close();
System.out.println("Disconnected.");
} catch (SQLException e) {
e.printStackTrace();
}

} catch (ClassNotFoundException e) {
e.printStackTrace();
}
}

最佳答案

您需要download MySQL JDBC 驱动程序并将其添加到设置中。

当您尝试在数据源资源管理器中创建新的连接配置文件时,您将看到这些屏幕。在最后一步中,您必须指向正确下载的 JAR 文件。

enter image description here enter image description here enter image description here enter image description here

关于java - 无法从 Eclipse DataSource Explorer 连接到 MySQl 数据库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9421234/

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