JavaEE-2-DBUtils框架使用

2018-07-31  本文已影响0人  ZzzRicardo_Yue

DBUtils是Apach公司创建的一个JDBC简化开发工具包,我们只需要关注:连接池(只要给它即可)和SQL语句的书写。

1、创建JavaBean类

首先我们需要创建一个JavaBean类,我们这里注意,所有JavaBean类都应该创建在domain包下,如:

domain包下
这样子是从反射的特性去考虑的。

2、DBUtils的三个主要类

image.png

从注释中可以看出来,QueryRunner是主类。

3、DBUtils的三个主要类之一:QueryRunner类使用

先看这个类的使用


构造方法

参数DataSource即是连接池


image.png

如下即为insert的操作


insert方法

注意这里超级方便,什么执行者、连接释放都不需要我们去操心

delete方法 update方法

4、DBUtils的两个主要方法之一:Query()使用

query(String sql, ResultSetHandler<T> rsh, Object... params) //执行查询 select
我们通过下面几个案例就能很清楚地知道具体如何使用这个query()方法的使用(注意,query()方法的第二个参数要用到DBUtils的三个主要类之一:ResultHandler类的使用,我们会在第五点进行讲解

通过id查询:

public void testFindById() throws Exception{
    
    try {
        
        //1 核心类
        QueryRunner queryRunner = new QueryRunner(C3P0Utils.getDataSource());
        //2 sql
        String sql = "select * from category where cid=?";
        //3 参数
        Object[] params = {"c003"};
        //4执行
        Category category = queryRunner.query(sql, new BeanHandler<Category>(Category.class), params);
        
        System.out.println(category);
    } catch (Exception e) {
        throw new RuntimeException(e);
    } 
}

查询所有:

public void testFindAll() throws Exception{
    
    try {
        
        //1 核心类
        QueryRunner queryRunner = new QueryRunner(C3P0Utils.getDataSource());
        //2 sql
        String sql = "select * from category";
        //3 参数
        Object[] params = {};
        //4执行
        List<Category> allCategory = queryRunner.query(sql, new BeanListHandler<Category>(Category.class), params);
        
        for (Category category : allCategory) {
            System.out.println(category);
        }
        
    } catch (Exception e) {
        throw new RuntimeException(e);
    } 
}

总记录数:

public void testCount() throws Exception{
    
    try {
        
        //1 核心类
        QueryRunner queryRunner = new QueryRunner(C3P0Utils.getDataSource());
        //2 sql
        String sql = "select count(*) from category";
        //3 参数
        Object[] params = {};
        //4执行
        Long numLong = (Long) queryRunner.query(sql, new ScalarHandler(), params);
        
        int num = numLong.intValue();
        
        System.out.println(num);
    } catch (Exception e) {
        throw new RuntimeException(e);
    } 
}

5、DBUtils的三个主要类之一:ResultHandler类使用

这是一个结果集处理类,该类下主要有如下几种方法:


主要方法

其中标红字的必须掌握

同理——

上一篇下一篇

猜你喜欢

热点阅读