DBUtiles中的简单使用(QueryRunner和ResultSetHandler的手动实现)

DBUtiles是一个很好的处理JDBC的工具类。(DbUtils is a small set of classes designed to make working with JDBC easier )

DBUtiles中的QueryRunner和ResultSetHandler的手动实现

其中比较常用的就是QueryRunner类和ResultSetHandler接口。通过它们可以很方便的实现JDBC的功能。

QueryRunner类,有四个构造方法,其中有的构造方法可以接受一个DataSource

例如:QueryRunner runner = new QueryRunner(new ComboPooledDataSource());

当我们获得QueryRunner的实例对象时,就能通过QueryRunner类的方法方便的操作数据库。QueryRunner类主要有三类方法,batch()方法,query()方法,update()方法。

例如:

[java] view plain copy

  1. QueryRunner runner=new QueryRunner(new ComboPooledDataSource());
  2. runner.update("insert into account values(null,?,?)","e",888);
  3. runner.update("update account set money=0 where name=?", "e");

查询的方法稍微麻烦一点,因为我们需要对查询到的结果集进行设置。通常需要把结果集ResultSet封装到JavaBean或者集合或者数组中。

查看一个方法:  <T> T   query(String sql, ResultSetHandler<T> rsh, Object... params)

这里第一个参数是sql语句字符串,第二个参数是一个实现了ResultSetHandler接口的类对象,第三个参数是Object类型的可变参数。返回值是一个T类型。

如果我们用的eclipse或者MyEclipse 鼠标放到ResutlSetHandlet上面,按F2,会有针对T的说明。<T> the target type the input ResultSet will be converted to.

意思是,T 代表 ResultSet结果集要装入的目标类型。也就是我们前面提到的数组,集合,甚至javabean.

下面用一段代码来实现把结果集装入一个List数组中。其中Account是一个javaBean,符合account表。

[java] view plain copy

  1. public static List test2() throws Exception{
  2. QueryRunner runner = new QueryRunner(new ComboPooledDataSource());
  3. return runner.query("select * from account where name=?",new ResultSetHandler<List<Account>>(){
  4. public List<Account> handle(ResultSet rs) throws SQLException {
  5. List<Account> list = new ArrayList<Account>();
  6. while(rs.next()){
  7. Account acc = new Account();
  8. acc.setId(rs.getInt("id"));
  9. acc.setName(rs.getString("name"));
  10. acc.setMoney(rs.getDouble("money"));
  11. list.add(acc);
  12. }
  13. return list;
  14. }
  15. } , "a");
  16. }

接下来,我们用两段代码来模拟QueryRunner和ResultSetHandler的实现原理。

[java] view plain copy

  1. package cn.itheima.dbutils;
  2. import java.sql.Connection;
  3. import java.sql.ParameterMetaData;
  4. import java.sql.PreparedStatement;
  5. import java.sql.ResultSet;
  6. import java.sql.SQLException;
  7. import java.util.ArrayList;
  8. import java.util.List;
  9. import javax.sql.DataSource;
  10. import cn.itheima.domain.Account;
  11. import com.mchange.v2.c3p0.ComboPooledDataSource;
  12. public class MyQueryRunner {
  13. private DataSource source = null;
  14. public MyQueryRunner(DataSource source) {
  15. this.source = source;
  16. }
  17. //查询原理:利用MyResourceHandler处理利用sql和objs拼写出来的sql语句查询出来的resultSet,处理
  18. public <T> T query(String sql,MyResultSetHandler<T> handler,Object ...objs){
  19. Connection conn = null;
  20. PreparedStatement ps = null;
  21. ResultSet rs = null;
  22. try {
  23. conn = source.getConnection();
  24. ps = conn.prepareStatement(sql);
  25. ParameterMetaData metaData = ps.getParameterMetaData();
  26. for(int i=1;i<=metaData.getParameterCount();i++){
  27. ps.setObject(i, objs[i-1]);
  28. }
  29. rs = ps.executeQuery();
  30. return handler.handle(rs);
  31. } catch (Exception e) {
  32. e.printStackTrace();
  33. throw new RuntimeException();
  34. } finally {
  35. if (rs != null) {
  36. try {
  37. rs.close();
  38. } catch (SQLException e) {
  39. e.printStackTrace();
  40. } finally {
  41. rs = null;
  42. }
  43. }
  44. if (ps != null) {
  45. try {
  46. ps.close();
  47. } catch (SQLException e) {
  48. e.printStackTrace();
  49. } finally {
  50. ps = null;
  51. }
  52. }
  53. if (conn != null) {
  54. try {
  55. conn.close();
  56. } catch (SQLException e) {
  57. e.printStackTrace();
  58. } finally {
  59. conn = null;
  60. }
  61. }
  62. }
  63. }
  64. public int update(String sql,Object ...objs){
  65. Connection conn  = null;
  66. PreparedStatement ps = null;
  67. try{
  68. conn = source.getConnection();
  69. ps = conn.prepareStatement(sql);
  70. ParameterMetaData metaData = ps.getParameterMetaData();
  71. for(int i=1;i<=metaData.getParameterCount();i++){
  72. ps.setObject(i, objs[i-1]);
  73. }
  74. return ps.executeUpdate();
  75. }catch (Exception e) {
  76. e.printStackTrace();
  77. throw new RuntimeException();
  78. }finally{
  79. if(ps!=null){
  80. try {
  81. ps.close();
  82. } catch (SQLException e) {
  83. e.printStackTrace();
  84. }finally{
  85. ps = null;
  86. }
  87. }
  88. if(conn!=null){
  89. try {
  90. conn.close();
  91. } catch (SQLException e) {
  92. e.printStackTrace();
  93. }finally{
  94. conn = null;
  95. }
  96. }
  97. }
  98. }
  99. }

MyResultSetHandler接口

[java] view plain copy

  1. package cn.itheima.dbutils;
  2. import java.sql.ResultSet;
  3. import java.sql.SQLException;
  4. public interface  MyResultSetHandler <T>{
  5. T handle(ResultSet rs)throws SQLException;
  6. }

当然,实际应用中没有这么麻烦。因为DBUtils已经帮我们实现了很多ResultSetHandler的实现类。通过这些类可以很方便的对结果集进行封装。

ResultSetHandler的实现类

[java] view plain copy

    1. //1.ArrayHandler 将查询结果每一行转换为一个数组对象返回
    2. //ResultSetHandler implementation that converts a ResultSet into an Object[]. This class is thread safe.
    3. Object[] objs = runner.query("select * from account where name=?",new ArrayHandler() , "c");
    4. System.out.println(objs);
    5. //2.ArrayListHandler 将查询结果的每一行转换为一个Object[]数组,然后装入一个ArrayList集合
    6. //ResultSetHandler implementation that converts the ResultSet into a List of Object[]s. This class is thread safe.
    7. List<Object[]> list = runner.query("select * from account",new ArrayListHandler() );
    8. System.out.println(list);
    9. //手动实现ArrayListHandler的功能
    10. public static List test2() throws Exception{
    11. QueryRunner runner = new QueryRunner(new ComboPooledDataSource());
    12. return runner.query("select * from account where name=?",new ResultSetHandler<List<Account>>(){
    13. public List<Account> handle(ResultSet rs) throws SQLException {
    14. List<Account> list = new ArrayList<Account>();
    15. while(rs.next()){
    16. Account acc = new Account();
    17. acc.setId(rs.getInt("id"));
    18. acc.setName(rs.getString("name"));
    19. acc.setMoney(rs.getDouble("money"));
    20. list.add(acc);
    21. }
    22. return list;
    23. }
    24. } , "a");
    25. }
    26. //3.BeanHandler,将查询结果的第一行转换为一个JavaBean对象返回
    27. //ResultSetHandler implementation that converts the first ResultSet row into a JavaBean. This class is thread safe.
    28. Account acc = runner.query("select * from account where name=?",new BeanHandler<Account>(Account.class) , "c");
    29. System.out.println(acc);
    30. //4.BeanListHandler:将结果集中的每一行数据都封装到一个对应的JavaBean实例中,存放到List里。
    31. //ResultSetHandler implementation that converts a ResultSet into a List of beans. This class is thread safe.
    32. List<Account> acclist = runner.query("select * from account",new BeanListHandler<Account>(Account.class) );
    33. System.out.println(acclist);
    34. //5.MapHandler:将结果集中的第一行数据封装到一个Map里,key是列名,value就是对应的值。
    35. //ResultSetHandler implementation that converts the first ResultSet row into a Map. This class is thread safe.
    36. Map map = runner.query("select * from account",new MapHandler() );
    37. System.out.println(map);
    38. //6.MapListHandler:将结果集中的每一行数据都封装到一个Map里,然后再存放到List
    39. //ResultSetHandler implementation that converts a ResultSet into a List of Maps. This class is thread safe
    40. List<Map<String, Object>> maplist = runner.query("select * from account",new MapListHandler() );
    41. System.out.println(maplist);
    42. //7.ColumnListHandler:将结果集中某一列的数据存放到List中。
    43. //ResultSetHandler implementation that converts one ResultSet column into a List of Objects. This class is thread safe.
    44. List<Object> columnList = runner.query("select * from account",new ColumnListHandler(2) );
    45. System.out.println(columnList);
    46. //8.KeyedHandler(name):将结果集中的每一行数据都封装到一个Map里(List<Map>),再把这些map再存到一个map里,其key为指定的列。
    47. //ResultSetHandler implementation that returns a Map of Maps. ResultSet rows are converted into Maps which are then stored in a Map under the given key.
    48. Map<Object, Map<String, Object>> keymap = runner.query("select * from account",new KeyedHandler("id") );
    49. System.out.println(keymap);
    50. //9.ScalarHandler: 单值查询
    51. //ResultSetHandler implementation that converts one ResultSet column into an Object. This class is thread safe.
    52. //select count(*) from account;
    53. Long count = (Long)runner.query("select count(*) from account",new ScalarHandler(1) );
    54. System.out.println(count);
时间: 2024-12-17 03:30:30

DBUtiles中的简单使用(QueryRunner和ResultSetHandler的手动实现)的相关文章

Java中的简单浮点数类型float和double不能够进行精确运算

在java中,简单的浮点类型float和double是不能够进行运算.我们先看下面的两个程序代码: 代码一: import java.util.Scanner; class Circle { double radius; static final double PI=3.14; public Circle(){this.radius=0;} public Circle(double r){this.radius=r;} public double getArea(){return PI*this

单例模式是设计模式中最简单的形式之一

单例模式是设计模式中最简单的形式之一.这一模式的目的是使得类的一个对象成为系统中的唯一实例.要实现这一点,可以从客户端对其进行实例化开始.因此需要用一种只允许生成对象类的唯一实例的机制,"阻止"所有想要生成对象的访问.使用工厂方法来限制实例化过程.这个方法应该是静态方法(类方法),因为让类的实例去生成另一个唯一实例毫无意义 意图: 保证一个类仅有一个实例,并提供一个访问它的全局访问点. 适用性: 当类只能有一个实例而且客户可以从一个众所周知的访问点访问它时. 当这个唯一实例应该是通过子

Python中的简单计算

Python中的简单计算 (1)基本的加减乘除 >>> 2 + 2 4 >>> 50 - 5*6 20 >>> (50 - 5*6) / 4 5.0 >>> 8 / 5  1.6 (2)除法总是会返回一个浮点数,想要返回整数,需要用"//"来表示(floor division),另外,可以用"%"进行取余操作 >>> 17 / 3  # classic division ret

python中一个简单的webserver

python中一个简单的webserver 2013-02-24 15:37:49 分类: Python/Ruby 支持多线程的webserver 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 #!/usr/bin/python from SocketServer import ThreadingMixIn from BaseHTTPServer import HTTPServer,BaseHTTPRequestHandler cla

管理系统中的简单分区和文件系统

管理系统中的简单分区和文件系统 一.简单分区和文件系统 存储是每个计算机系统的基本需求. Red Hat Enterprise Linux 提供了一些强大的工具 , 它们能在大量的场景中管理多种类型的存储设备 disk 是用于管理磁盘分区的实用程序.您可以通过选择 -l选项和指定磁盘名称 ( fdisk -cul /dev/vda ) 运行该实用程序 , 以查看磁盘及其分区.您可以通过交互式地运行该实用 程序 , 并选择相应的菜单选项 ( fdisk -cu /dev/vda ) 进行更改. -

用CI框架向数据库中实现简单的增删改查

以下代码基于CodeIgniter_2.1.3版 用PHP向数据库中实现简单的增删改查(纯代码)请戳 http://www.cnblogs.com/corvoh/p/4641476.html CodeIgniter_2.1.3与PHP5.6的兼容问题请戳 http://www.cnblogs.com/corvoh/p/4649357.html 增: //insert//语法:$bool=$this->db->insert('表名',关联数组); $data=array( 'username'=

R语言中最简单的向量赋值方法

R语言中最简单的向量赋值方法简介: 1. 生成等差数列的向量x x <- 1:10 #将x向量赋值为1 2 3 4 5 6 7 8 9 10 结果为 > x [1] 1 2 3 4 5 6 7 8 9 10 2. 将x的值全部修改成0 x[] <- 0 #非常简洁的赋值方法,建议使用 x[1:length(x)] <- 0 #不建议使用的赋值方法 结果为: > x[] <- 0 > x [1] 0 0 0 0 0 0 0 0 0 0 3.使用seq函数 x <

用PHP向数据库中实现简单的增删改查(纯代码,待完善)

<?php $con = mysql_connect("localhost:3306","root",""); if (!$con) { die('Could not connect: ' . mysql_error()); } mysql_select_db("test", $con); $result = mysql_query("SELECT * FROM user"); echo "

在 asp.net mvc中的简单分页算法

//第一步:建立如下分页实体类:namespace MVCPager.Helpers { /// <summary> /// 简单分页算法类 /// </summary> public class Pager { public int RecordCount { get; set; } public int PageIndex { get; set; } public int PageSize { get; set; } public int PageCount { get { r