Eclipse 是一个开源的集成开发环境(IDE),主要用于 Java 语言的开发,但也支持其他多种编程语言。MySQL 是一个关系型数据库管理系统,广泛应用于各种 Web 应用程序和数据存储需求。
Window
-> Preferences
。Java
-> Build Path
-> Libraries
。Add External JARs
,选择 MySQL Connector/J 的 JAR 文件并添加。import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.SQLException;
public class MySQLConnectionExample {
public static void main(String[] args) {
String url = "jdbc:mysql://localhost:3306/your_database";
String user = "your_username";
String password = "your_password";
try (Connection conn = DriverManager.getConnection(url, user, password)) {
System.out.println("Connected to the database!");
} catch (SQLException e) {
System.out.println("Failed to connect to the database.");
e.printStackTrace();
}
}
}
Run As
-> Java Application
,如果配置正确,你应该会看到输出 Connected to the database!
。通过以上步骤和参考链接,你应该能够在 Eclipse 中成功创建并连接到 MySQL 数据库。
领取专属 10元无门槛券
手把手带您无忧上云