java 程序调用 达梦数据 查询语句写法
时间: 2024-02-25 17:52:57 浏览: 79
达梦数据库常用sql语句语法
5星 · 资源好评率100%
首先需要导入达梦数据库的 JDBC 驱动,然后可以使用以下代码来执行查询语句:
```java
import java.sql.*;
public class Demo {
public static void main(String[] args) {
Connection conn = null;
Statement stmt = null;
ResultSet rs = null;
try {
// 1. 加载数据库驱动
Class.forName("dm.jdbc.driver.DmDriver");
// 2. 建立连接
String url = "jdbc:dm://host:port/database";
String user = "username";
String password = "password";
conn = DriverManager.getConnection(url, user, password);
// 3. 创建 Statement 对象
stmt = conn.createStatement();
// 4. 执行 SQL 查询
String sql = "SELECT * FROM table_name WHERE column = 'value'";
rs = stmt.executeQuery(sql);
// 5. 处理查询结果
while (rs.next()) {
// 处理每一行数据
}
} catch (Exception e) {
e.printStackTrace();
} finally {
// 6. 关闭资源
try {
if (rs != null) rs.close();
if (stmt != null) stmt.close();
if (conn != null) conn.close();
} catch (Exception e) {
e.printStackTrace();
}
}
}
}
```
其中,`host` 是数据库服务器的主机名或 IP 地址,`port` 是端口号,`database` 是数据库名称,`username` 和 `password` 是登录数据库的用户名和密码。`table_name` 和 `column` 分别是表名和列名,`value` 是查询条件的值。你需要将这些参数替换成实际的值。
阅读全文