javaee数据库连接
时间: 2023-06-25 15:05:45 浏览: 103
在 JavaEE 中,常用的数据库连接方式是使用 JDBC API。具体步骤如下:
1. 加载驱动程序
在使用 JDBC 连接数据库之前,需要加载特定数据库的驱动程序。例如,连接 MySQL 数据库需要加载 com.mysql.jdbc.Driver 驱动程序。
可以通过 Class.forName() 方法来加载驱动程序,例如:
```
Class.forName("com.mysql.jdbc.Driver");
```
2. 创建连接
使用 DriverManager.getConnection() 方法创建一个连接对象。需要提供数据库 URL、用户名和密码等连接信息。例如:
```
String url = "jdbc:mysql://localhost:3306/test";
String user = "root";
String password = "123456";
Connection conn = DriverManager.getConnection(url, user, password);
```
3. 创建 Statement 对象
使用 Connection.createStatement() 方法创建一个 Statement 对象,用于执行 SQL 语句。例如:
```
Statement stmt = conn.createStatement();
```
4. 执行 SQL 语句
使用 Statement.execute() 或 Statement.executeQuery() 方法执行 SQL 语句。例如:
```
ResultSet rs = stmt.executeQuery("SELECT * FROM user");
while (rs.next()) {
int id = rs.getInt("id");
String name = rs.getString("name");
// 处理查询结果
}
```
5. 关闭连接
最后,使用 Connection.close() 方法关闭连接。例如:
```
conn.close();
```
以上就是使用 JDBC 连接数据库的基本步骤。需要注意的是,在实际开发中,还需要进行异常处理、连接池管理等操作。
阅读全文