myeclipse链接mysql数据库
时间: 2023-11-20 10:56:30 浏览: 125
myeclipse连接MySQL
5星 · 资源好评率100%
以下是在MyEclipse中连接MySQL数据库的步骤:
1. 点击菜单栏的“Window” -> “Show View” -> “Other” -> “MyEclipse Database” -> “Database Browser”打开数据库连接视图。
2. 在“Database Browser”视图中,右键单击并选择“New” -> “Connection Profile”创建一个新的数据库连接。
3. 在“New Connection Profile”对话框中,输入连接配置信息,包括连接名称、数据库类型、主机名、端口号、数据库名称、用户名和密码等。
4. 点击“Test Connection”按钮测试连接是否成功。
5. 如果连接测试成功,点击“OK”按钮保存连接配置信息。
6. 在“Database Browser”视图中,展开新创建的连接,可以看到连接下的所有数据库和表。
```java
// 示例代码
import java.sql.*;
public class MySQLDemo {
public static void main(String[] args) {
Connection conn = null;
Statement stmt = null;
ResultSet rs = null;
try {
// 加载数据库驱动
Class.forName("com.mysql.jdbc.Driver");
// 获取数据库连接
conn = DriverManager.getConnection("jdbc:mysql://localhost:3306/test", "root", "123456");
// 创建Statement对象
stmt = conn.createStatement();
// 执行SQL语句
rs = stmt.executeQuery("SELECT * FROM user");
// 处理结果集
while (rs.next()) {
System.out.println(rs.getString("name") + " " + rs.getInt("age"));
}
} catch (ClassNotFoundException e) {
e.printStackTrace();
} catch (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();
}
}
}
}
```
阅读全文