码迷,mamicode.com
首页 > 数据库 > 详细

javaWeb_JDBC_ResultSet查询操作

时间:2019-02-02 21:55:15      阅读:221      评论:0      收藏:0      [点我收藏+]

标签:while   put   url   source   cep   row   stream   finally   数据库服务器   

 

JDBC基础_resultSet结果集

1.概述以及注意事项

(1).什么是ResultSet?
ResultSet是对象以逻辑表格的形式封装了执行数据库操作的结果集,ResultSet 接口由数据库厂商实现


(2).如何创建ResultSet
通过调用 Statement 对象的 excuteQuery() 方法创建该对象


(3).如何使用ResultSet
ResultSet 对象维护了一个指向当前数据行的游标,初始的时候,游标在第一行之前,可以通过 ResultSet 对象的 next() 方法移动到
下一行,相当于Iterator 对象的 hasNext() 和 next() 方法的结合体

ResultSet 接口的常用方法:
boolean next():用于判断下一个数据是否存在,如果没有,那么返回的就是false
getXxx()方法:获取下一个位置上的内容。如
当指针对位到一行时, 可以通过调用 getXxx(index) 或 getXxx(columnName)
获取每一列的值. 例如: getInt(1), getString("name")
注意:列索引是从1开始

(4).ResultSet 当然也需要进行关闭


2.一个基本的数据库表查询,如:获取 id=4 的 customers 数据表中的相关的记录, 并输出

(1).实现步骤
-1. 获取 Connection
-2. 获取 Statement
-3. 准备 SQL
-4. 执行查询, 得到 ResultSet
-5. 处理 ResultSet
-6. 关闭数据库资源.

(2).代码实现
//获取连接以及关闭的工具类
public static void release(ResultSet rs,Statement statement, Connection conn) {
if(rs != null){
try {
rs.close();
} catch (SQLException e) {
e.printStackTrace();
}
}


if (statement != null) {
try {
statement.close();
} catch (Exception e2) {
e2.printStackTrace();
}
}

if (conn != null) {
try {
conn.close();
} catch (Exception e2) {
e2.printStackTrace();
}
}
}


/**
* 1. 获取连接的方法. 通过读取配置文件从数据库服务器获取一个连接.
*
* @return
* @throws Exception
*/
public static Connection getConnection() throws Exception {
// 1. 准备连接数据库的 4 个字符串.
// 1). 创建 Properties 对象
Properties properties = new Properties();

// 2). 获取 jdbc.properties 对应的输入流
InputStream in = JDBCTools.class.getClassLoader().getResourceAsStream(
"jdbc.properties");

// 3). 加载 2) 对应的输入流
properties.load(in);

// 4). 具体决定 user, password 等4 个字符串.
String user = properties.getProperty("user");
String password = properties.getProperty("password");
String jdbcUrl = properties.getProperty("jdbcUrl");
String driver = properties.getProperty("driver");

// 2. 加载数据库驱动程序(对应的 Driver 实现类中有注册驱动的静态代码块.)
Class.forName(driver);

// 3. 通过 DriverManager 的 getConnection() 方法获取数据库连接.
return DriverManager.getConnection(jdbcUrl, user, password);
}


//操作类
public void testResultSet(){
//获取 id=4 的 customers 数据表的记录, 并打印

Connection conn = null;
Statement statement = null;
ResultSet rs = null;

try {
//1. 获取 Connection
conn = JDBCTools.getConnection();
System.out.println(conn);

//2. 获取 Statement
statement = conn.createStatement();
System.out.println(statement);

//3. 准备 SQL
String sql = "SELECT id, name, email, birth " +
"FROM customers";

//4. 执行查询, 得到 ResultSet
rs = statement.executeQuery(sql);
System.out.println(rs);

//5. 处理 ResultSet
while(rs.next()){
int id = rs.getInt(1);
String name = rs.getString("name");
String email = rs.getString(3);
Date birth = rs.getDate(4);

System.out.println(id);
System.out.println(name);
System.out.println(email);
System.out.println(birth);
}

} catch (Exception e) {
e.printStackTrace();
} finally{
//6. 关闭数据库资源.
JDBCTools.release(rs, statement, conn);
}

}

 

javaWeb_JDBC_ResultSet查询操作

标签:while   put   url   source   cep   row   stream   finally   数据库服务器   

原文地址:https://www.cnblogs.com/nwxayyf/p/10349232.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!