Java连接MySQL数据库需要使用JDBC驱动程序,并且在IDEA中需要进行配置。以下是连接MySQL数据库的基本步骤:
1. 添加MySQL JDBC驱动程序
public static final String DRIVER = "com.mysql.jdbc.Driver"; //JDBC驱动程序
2. 创建数据库连接
public static final String URL = "jdbc:mysql://localhost:3306/testdb"; //MySQL数据库连接URLpublic static final String USERNAME = "root"; //MySQL数据库用户名public static final String PASSWORD = "root"; //MySQL数据库密码Connection conn;Class.forName(DRIVER);conn = DriverManager.getConnection(URL, USERNAME, PASSWORD);
3. 执行SQL语句
String sql = "select * from user";Statement statement = conn.createStatement();ResultSet resultSet = statement.executeQuery(sql);while (resultSet.next()) {String name = resultSet.getString(1);int age = resultSet.getInt(2);System.out.println("name: " + name + " age: " + age);}
4. 关闭连接和释放资源
resultSet.close();statement.close();conn.close();
以上是Java连接MySQL数据库的基本步骤。在IDEA中配置MySQL连接需要在项目的“lib”目录下添加MySQL JDBC驱动程序,并在项目的“src”目录下创建“config.properties”文件,文件中配置MySQL数据库连接信息。