net beans连接数据库代码
时间: 2023-07-15 07:13:33 浏览: 88
netbeans连接数据库
5星 · 资源好评率100%
下面是使用 NetBeans 连接 MySQL 数据库的示例代码:
```java
import java.sql.*;
public class ConnectMySQL {
public static void main(String[] args) {
Connection conn = null;
Statement stmt = null;
ResultSet rs = null;
try {
// 加载 MySQL 驱动
Class.forName("com.mysql.jdbc.Driver");
// 创建连接
String url = "jdbc:mysql://localhost:3306/test";
String user = "root";
String password = "root";
conn = DriverManager.getConnection(url, user, password);
// 创建 Statement
stmt = conn.createStatement();
// 执行查询
String sql = "SELECT * FROM users";
rs = stmt.executeQuery(sql);
// 处理结果集
while (rs.next()) {
int id = rs.getInt("id");
String name = rs.getString("name");
String email = rs.getString("email");
System.out.println("id=" + id + ", name=" + name + ", email=" + email);
}
} catch (ClassNotFoundException | SQLException e) {
e.printStackTrace();
} finally {
// 关闭资源
try {
if (rs != null) {
rs.close();
}
if (stmt != null) {
stmt.close();
}
if (conn != null) {
conn.close();
}
} catch (SQLException e) {
e.printStackTrace();
}
}
}
}
```
在这个示例代码中,我们使用 `com.mysql.jdbc.Driver` 驱动程序连接 MySQL 数据库。我们使用 `DriverManager.getConnection()` 方法创建连接,并使用 `Statement` 实例执行查询。最后,我们使用 `ResultSet` 处理查询结果,并使用 `finally` 块关闭资源。
阅读全文