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

开源组件:(3)dbutils

时间:2016-06-09 08:38:05      阅读:252      评论:0      收藏:0      [点我收藏+]

标签:dbutils

commons-dbutils 是 Apache 组织提供的一个开源JDBC工具类库,它是对JDBC的简单封装,学习成本极低,并且使用dbutils能极大简化jdbc编码的工作量,同时也不会影响程序的性能。因此dbutils成为很多不喜欢hibernate的公司的首选。

DbUtils组件的主要作用是简化jdbc操作

项目准备

1. 引入mysql驱动:mysql-connector-java-5.1.38-bin.jar

2. 引入jar文件 : commons-dbutils-1.6.jar

下载dbutils组件: http://commons.apache.org/proper/commons-dbutils/download_dbutils.cgi


1、DbUtils类


DbUtils类的主要作用是:关闭资源、加载驱动。


2、QueryRunner类

QueryRunner类,位于org.apache.commons.dbutils包下,全名org.apache.commons.dbutils.QueryRunner


QueryRunner类是组件的核心工具类:定义了所有的与数据库操作的方法(查询、更新)

对于QueryRunner类的描述是Executes SQL queries with pluggable strategies for handling ResultSets. This class is thread safe.


下面的话,要多读几遍:

【Executes SQL queries】 with 【pluggable strategies】 for 【handling ResultSets】.


QueryRunner类提供了默认的构造函数:public QueryRunner() ,在进行update、query等方式法需要传入Connection对象


QueryRunner类还提供了另外一个构造函数,接受DataSource类型的对象:public QueryRunner(DataSource ds) 

对这个构造函数的描述是:Constructor for QueryRunner that takes a DataSource to use. Methods that do not take a Connection parameter will retrieve connections from this DataSource.使用不带Connnection参数的方法时,将从DataSource中获取Connection对象。


提供的update方法(带有Connection)

(1)public int update(Connection conn, String sql)

//描述:Execute an SQL INSERT, UPDATE, or DELETE query without replacement parameters.

(2)public int update(Connection conn, String sql, Object param) 

//描述:Execute an SQL INSERT, UPDATE, or DELETE query with a single replacement parameter.

(3)public int update(Connection conn, String sql, Object... params)

//描述:Execute an SQL INSERT, UPDATE, or DELETE query.



提供的update方法(不带有Connection)

(1)public int update(String sql)

//描述:Executes the given INSERT, UPDATE, or DELETE SQL statement without any replacement parameters. The Connection is retrieved from the DataSource set in the constructor. This Connection must be in auto-commit mode or the update will not be saved.

(2)public int update(String sql, Object param)

//描述:Executes the given INSERT, UPDATE, or DELETE SQL statement with a single replacement parameter. The Connection is retrieved from the DataSource set in the constructor. This Connection must be in auto-commit mode or the update will not be saved.

(3)public int update(String sql, Object... params)

//描述:Executes the given INSERT, UPDATE, or DELETE SQL statement. The Connection is retrieved from the DataSource set in the constructor. This Connection must be in auto-commit mode or the update will not be saved.



提供的query方法(带Connection对象)

(1)public <T> T query(Connection conn, String sql, ResultSetHandler<T> rsh)

//描述:Execute an SQL SELECT query without any replacement parameters. The caller is responsible for closing the connection.

(2)public <T> T query(Connection conn, String sql, ResultSetHandler<T> rsh, Object... params) 

//描述:Execute an SQL SELECT query with replacement parameters. The caller is responsible for closing the connection.



提供的query方法(不带有Connection)

(1)public <T> T query(String sql, ResultSetHandler<T> rsh)

//描述:Executes the given SELECT SQL without any replacement parameters. The Connection is retrieved from the DataSource set in the constructor.

(2)public <T> T query(String sql, ResultSetHandler<T> rsh, Object... params)

//描述:Executes the given SELECT SQL query and returns a result object. The Connection is retrieved from the DataSource set in the constructor.


2.1、更新

执行一次

package com.rk.demo;

import java.sql.Connection;
import java.sql.SQLException;

import org.apache.commons.dbutils.DbUtils;
import org.apache.commons.dbutils.QueryRunner;

import com.rk.utils.JDBCUtils;

//1. 更新
public class Demo01
{
	public static void main(String[] args)
	{
		Connection conn = null;
		try
		{
			//SQL语句
			String sql = "INSERT INTO T_Dogs(Name,Age,BirthDay) VALUES(?,?,?)";
			// 获取连接对象
			conn = JDBCUtils.getConnection();
			// 创建DbUtils核心工具类对象
			QueryRunner qr = new QueryRunner();
			//执行新增操作
			qr.update(conn, sql, "旺财","2","2015-08-08");
		}
		catch (SQLException e)
		{
			throw new RuntimeException(e);
		}
		finally
		{
			// 关闭
			DbUtils.closeQuietly(conn);
		}
	}
}

批处理

package com.rk.demo;

import java.sql.Connection;
import java.sql.SQLException;

import org.apache.commons.dbutils.DbUtils;
import org.apache.commons.dbutils.QueryRunner;

import com.rk.utils.JDBCUtils;

//2. 批处理
public class Demo02
{
	public static void main(String[] args)
	{
		Connection conn = null;
		try
		{
			//SQL语句
			String sql = "INSERT INTO T_Dogs(Name,Age,BirthDay) VALUES(?,?,?)";
			// 获取连接对象
			conn = JDBCUtils.getConnection();
			// 创建DbUtils核心工具类对象
			QueryRunner qr = new QueryRunner();
			// 执行批量新增
			qr.batch(conn, sql, new Object[][]{{"小狗1","1","2015-08-09"},{"小狗2","1","2015-08-10"}});
		}
		catch (SQLException e)
		{
			throw new RuntimeException(e);
		}
		finally
		{
			DbUtils.closeQuietly(conn);
		}
	}
}


2.2、查询

1.自定义结果封装数据(自己写代码实现)

package com.rk.demo;

import java.sql.Connection;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;

import org.apache.commons.dbutils.DbUtils;
import org.apache.commons.dbutils.QueryRunner;
import org.apache.commons.dbutils.ResultSetHandler;

import com.rk.entity.DogInfo;
import com.rk.utils.JDBCUtils;
//1.查询, 自定义结果集封装数据
public class Demo03
{
	public static void main(String[] args)
	{
		Connection conn = null;
		try
		{
			String sql = "SELECT * FROM T_Dogs WHERE Id=?";
			// 获取连接
			conn = JDBCUtils.getConnection();
			// 创建DbUtils核心工具类对象
			QueryRunner qr = new QueryRunner();
			// 查询
			DogInfo dog = qr.query(conn,sql, new ResultSetHandler<DogInfo>(){
				// 如何封装一个DogInfo对象
				@Override
				public DogInfo handle(ResultSet rs) throws SQLException
				{
					DogInfo dog = null;
					if (rs.next())
					{
						dog = new DogInfo();
						dog.setId(rs.getInt("Id"));
						dog.setName(rs.getString("Name"));
						dog.setAge(rs.getInt("Age"));
						String strBirthDay = rs.getDate("BirthDay").toString();
						Date birthDay = null;
						try
						{
							SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
							birthDay = sdf.parse(strBirthDay);
						}
						catch (ParseException e)
						{
							e.printStackTrace();
						}
						dog.setBirthDay(birthDay);
					}
					return dog;
				}}, 2);
			// 打印输出结果
			System.out.println(dog);
		}
		catch (SQLException e)
		{
			throw new RuntimeException(e);
		}
		finally
		{
			//关闭Connection对象
			DbUtils.closeQuietly(conn);
		}
	}
}


2.使用BeanHandler、BeanListHandler和ScalarHandler

package com.rk.demo;

import java.sql.Connection;
import java.sql.SQLException;
import java.util.List;

import org.apache.commons.dbutils.DbUtils;
import org.apache.commons.dbutils.QueryRunner;
import org.apache.commons.dbutils.handlers.BeanHandler;
import org.apache.commons.dbutils.handlers.BeanListHandler;
import org.apache.commons.dbutils.handlers.ScalarHandler;
import org.junit.Test;

import com.rk.entity.DogInfo;
import com.rk.utils.JDBCUtils;

//2.查询, 使用组件提供的结果集对象封装数据
public class Demo04
{
	@Test
	// 1)BeanHandler: 查询返回单个对象
	public void testBeanHandler()
	{
		Connection conn = null;
		try
		{
			String sql = "SELECT * FROM T_Dogs WHERE Id=?";
			// 获取连接
			conn = JDBCUtils.getConnection();
			// 创建DbUtils核心工具类对象
			QueryRunner qr = new QueryRunner();
			// 查询返回单个对象
			DogInfo dog = qr.query(conn,sql, new BeanHandler<DogInfo>(DogInfo.class), 2);
			//打印结果
			System.out.println(dog);
		}
		catch (SQLException e)
		{
			throw new RuntimeException(e);
		}
		finally
		{
			DbUtils.closeQuietly(conn);
		}
	}
	
	@Test
	// 2)BeanListHandler: 查询返回list集合,集合元素是指定的对象
	public void testBeanListHandler()
	{
		Connection conn = null;
		try
		{
			String sql = "SELECT * FROM T_Dogs";
			// 获取连接
			conn = JDBCUtils.getConnection();
			// 创建DbUtils核心工具类对象
			QueryRunner qr = new QueryRunner();
			// 查询全部数据
			List<DogInfo> list = qr.query(conn,sql, new BeanListHandler<DogInfo>(DogInfo.class));
			//打印结果
			for(DogInfo dog : list)
			{
				System.out.println(dog);
			}
			
		}
		catch (SQLException e)
		{
			throw new RuntimeException(e);
		}
		finally
		{
			DbUtils.closeQuietly(conn);
		}
	}
	
	@Test
	// 3)ScalarHandler: 查询返回指定“列名”或“索引”的值
	public void testScalarHandler()
	{
		Connection conn = null;
		try
		{
			String sql = "SELECT count(*) FROM T_Dogs";
			// 获取连接
			conn = JDBCUtils.getConnection();
			// 创建DbUtils核心工具类对象
			QueryRunner qr = new QueryRunner();
			// 查询数量
			Long count = qr.query(conn,sql, new ScalarHandler<Long>(1));//索引从1开始
			//打印结果
			System.out.println("共有"+count.intValue()+"个记录");
			
		}
		catch (SQLException e)
		{
			throw new RuntimeException(e);
		}
		finally
		{
			DbUtils.closeQuietly(conn);
		}
	}
	
}


3.使用其它的ResultSetHandler

package com.rk.demo;

import java.sql.Connection;
import java.sql.SQLException;
import java.util.Arrays;
import java.util.List;
import java.util.Map;

import org.apache.commons.dbutils.DbUtils;
import org.apache.commons.dbutils.QueryRunner;
import org.apache.commons.dbutils.handlers.ArrayHandler;
import org.apache.commons.dbutils.handlers.ArrayListHandler;
import org.apache.commons.dbutils.handlers.BeanHandler;
import org.apache.commons.dbutils.handlers.BeanListHandler;
import org.apache.commons.dbutils.handlers.BeanMapHandler;
import org.apache.commons.dbutils.handlers.ColumnListHandler;
import org.apache.commons.dbutils.handlers.KeyedHandler;
import org.apache.commons.dbutils.handlers.MapHandler;
import org.apache.commons.dbutils.handlers.MapListHandler;
import org.junit.Test;

import com.rk.entity.DogInfo;
import com.rk.utils.JDBCUtils;

public class Demo05
{
	@Test
	//ArrayHandler返回的是一个Object[]对象,其中是同一条记录中各个列的值,如[3, 汪汪, 2, 2016-06-08]
	public void testArrayHandler()
	{
		Connection conn = null;
		try
		{
			String sql = "SELECT * FROM T_Dogs WHERE Id=?";
			// 获取连接
			conn = JDBCUtils.getConnection();
			// 创建DbUtils核心工具类对象
			QueryRunner qr = new QueryRunner();
			// 查询
			Object[] objs = qr.query(conn,sql, new ArrayHandler(), 3);
			//打印结果
			System.out.println(Arrays.toString(objs));
		}
		catch (SQLException e)
		{
			throw new RuntimeException(e);
		}
		finally
		{
			DbUtils.closeQuietly(conn);
		}
	}
	
	@Test
	//ArrayListHandler返回的是List<Object[]>对象
	public void testArrayListHandler()
	{
		Connection conn = null;
		try
		{
			String sql = "SELECT * FROM T_Dogs";
			// 获取连接
			conn = JDBCUtils.getConnection();
			// 创建DbUtils核心工具类对象
			QueryRunner qr = new QueryRunner();
			// 查询
			List<Object[]> list = qr.query(conn,sql, new ArrayListHandler());
			//打印结果
			for(Object[] dog : list)
			{
				System.out.println(Arrays.toString(dog));
			}
			
		}
		catch (SQLException e)
		{
			throw new RuntimeException(e);
		}
		finally
		{
			DbUtils.closeQuietly(conn);
		}
	}
	
	@Test
	//BeanMapHandler: Creates a new instance of BeanMapHandler. The value of the first column of each row will be a key in the Map.
	public void testBeanMapHandler()
	{
		Connection conn = null;
		try
		{
			String sql = "SELECT Name,Age,BirthDay FROM T_Dogs";
			// 获取连接
			conn = JDBCUtils.getConnection();
			// 创建DbUtils核心工具类对象
			QueryRunner qr = new QueryRunner();
			// 查询
			Map<String, DogInfo> map = qr.query(conn,sql, new BeanMapHandler<String, DogInfo>(DogInfo.class));
			//打印结果
			for(Map.Entry<String,DogInfo> item : map.entrySet())
			{
				System.out.println(item.getKey() + ":" + item.getValue());
			}
			
		}
		catch (SQLException e)
		{
			throw new RuntimeException(e);
		}
		finally
		{
			DbUtils.closeQuietly(conn);
		}
	}
	
	@Test
	//ColumnListHandler: Converts one ResultSet column into a List of Objects.
	public void testColumnListHandler()
	{
		Connection conn = null;
		try
		{
			String sql = "SELECT Name,Age,BirthDay FROM T_Dogs";
			// 获取连接
			conn = JDBCUtils.getConnection();
			// 创建DbUtils核心工具类对象
			QueryRunner qr = new QueryRunner();
			// 查询
			List<String> list = qr.query(conn,sql, new ColumnListHandler<String>(1));
			//打印结果
			for(String item : list)
			{
				System.out.println(item);
			}
			
		}
		catch (SQLException e)
		{
			throw new RuntimeException(e);
		}
		finally
		{
			DbUtils.closeQuietly(conn);
		}
	}
	
	@Test
	//KeyedHandler: Returns a Map of Maps. ResultSet rows are converted into Maps which are then stored in a Map under the given key.
	public void testKeyedHandler()
	{
		Connection conn = null;
		try
		{
			String sql = "SELECT Id, Name,Age,BirthDay FROM T_Dogs";
			// 获取连接
			conn = JDBCUtils.getConnection();
			// 创建DbUtils核心工具类对象
			QueryRunner qr = new QueryRunner();
			// 查询
			Map<String, Map<String, Object>> map = qr.query(conn,sql, new KeyedHandler<String>("Name"));
			Map<String, Object> wcMap = map.get("旺财");
			//打印结果
			System.out.println(wcMap.get("Id"));
			System.out.println(wcMap.get("Name"));
			System.out.println(wcMap.get("Age"));
			System.out.println(wcMap.get("BirthDay"));
		}
		catch (SQLException e)
		{
			throw new RuntimeException(e);
		}
		finally
		{
			DbUtils.closeQuietly(conn);
		}
	}
	
	@Test
	//MapHandler: 将一条记录以Key/Value的形式保存于Map中,Key中值就是Column的值
	public void testMapHandler()
	{
		Connection conn = null;
		try
		{
			String sql = "SELECT Id, Name,Age,BirthDay FROM T_Dogs WHERE Id=?";
			// 获取连接
			conn = JDBCUtils.getConnection();
			// 创建DbUtils核心工具类对象
			QueryRunner qr = new QueryRunner();
			// 查询
			Map<String, Object> map = qr.query(conn,sql, new MapHandler(),3);
			//打印结果
			for(Map.Entry<String,Object> item : map.entrySet())
			{
				System.out.println(item.getKey() + ":" + item.getValue());
			}
			
		}
		catch (SQLException e)
		{
			throw new RuntimeException(e);
		}
		finally
		{
			DbUtils.closeQuietly(conn);
		}
	}
	
	@Test
	//MapListHandler
	public void testMapListHandler()
	{
		Connection conn = null;
		try
		{
			String sql = "SELECT Id, Name,Age,BirthDay FROM T_Dogs WHERE Id";
			// 获取连接
			conn = JDBCUtils.getConnection();
			// 创建DbUtils核心工具类对象
			QueryRunner qr = new QueryRunner();
			// 查询
			List<Map<String, Object>> list = qr.query(conn,sql, new MapListHandler());
			//打印结果
			for(Map<String, Object> map : list)
			{
				for(Map.Entry<String,Object> item : map.entrySet())
				{
					System.out.print(item.getKey() + ":" + item.getValue() + "\t");
				}
				System.out.println();
			}
			
			
		}
		catch (SQLException e)
		{
			throw new RuntimeException(e);
		}
		finally
		{
			DbUtils.closeQuietly(conn);
		}
	}
}


3、DbUtils类和QueryRunner类源码



3.1、DbUtils类源码

DbUtils类,位于org.apache.commons.dbutils包下,全名org.apache.commons.dbutils.DbUtils

DbUtils类的主要作用是:关闭资源、加载驱动

DbUtils类的部分源码:

package org.apache.commons.dbutils;

import static java.sql.DriverManager.registerDriver;

import java.io.PrintWriter;
import java.lang.reflect.Constructor;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.sql.Connection;
import java.sql.Driver;
import java.sql.DriverPropertyInfo;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.SQLFeatureNotSupportedException;
import java.sql.Statement;
import java.util.logging.Logger;
import java.util.Properties;

/**
 * A collection of JDBC helper methods.
 */
public final class DbUtils {

    /**
     * Default constructor.
     *
     * Utility classes should not have a public or default constructor,
     * but this one preserves retro-compatibility.
     *
     * @since 1.4
     */
    public DbUtils() {
        // do nothing
    }

    /**
     * Close a <code>Connection</code>, avoid closing if null.
     *
     */
    public static void close(Connection conn) throws SQLException {
        if (conn != null) {
            conn.close();
        }
    }

    /**
     * Close a <code>ResultSet</code>, avoid closing if null.
     *
     */
    public static void close(ResultSet rs) throws SQLException {
        if (rs != null) {
            rs.close();
        }
    }

    /**
     * Close a <code>Statement</code>, avoid closing if null.
     *
     */
    public static void close(Statement stmt) throws SQLException {
        if (stmt != null) {
            stmt.close();
        }
    }

    /**
     * Close a <code>Connection</code>, avoid closing if null and hide
     * any SQLExceptions that occur.
     *
     */
    public static void closeQuietly(Connection conn) {
        try {
            close(conn);
        } catch (SQLException e) { // NOPMD
            // quiet
        }
    }

    /**
     * Close a <code>Connection</code>, <code>Statement</code> and
     * <code>ResultSet</code>.  Avoid closing if null and hide any
     * SQLExceptions that occur.
     *
     */
    public static void closeQuietly(Connection conn, Statement stmt,
            ResultSet rs) {

        try {
            closeQuietly(rs);
        } finally {
            try {
                closeQuietly(stmt);
            } finally {
                closeQuietly(conn);
            }
        }

    }

    /**
     * Close a <code>ResultSet</code>, avoid closing if null and hide any
     * SQLExceptions that occur.
     *
     */
    public static void closeQuietly(ResultSet rs) {
        try {
            close(rs);
        } catch (SQLException e) { // NOPMD
            // quiet
        }
    }

    /**
     * Close a <code>Statement</code>, avoid closing if null and hide
     * any SQLExceptions that occur.
     *
     */
    public static void closeQuietly(Statement stmt) {
        try {
            close(stmt);
        } catch (SQLException e) { // NOPMD
            // quiet
        }
    }

    /**
     * Commits a <code>Connection</code> then closes it, avoid closing if null.
     *
     */
    public static void commitAndClose(Connection conn) throws SQLException {
        if (conn != null) {
            try {
                conn.commit();
            } finally {
                conn.close();
            }
        }
    }

    /**
     * Commits a <code>Connection</code> then closes it, avoid closing if null
     * and hide any SQLExceptions that occur.
     *
     */
    public static void commitAndCloseQuietly(Connection conn) {
        try {
            commitAndClose(conn);
        } catch (SQLException e) { // NOPMD
            // quiet
        }
    }

    /**
     * Loads and registers a database driver class.
     * If this succeeds, it returns true, else it returns false.
     *
     */
    public static boolean loadDriver(String driverClassName) {
        return loadDriver(DbUtils.class.getClassLoader(), driverClassName);
    }

    /**
     * Loads and registers a database driver class.
     * If this succeeds, it returns true, else it returns false.
     *
     */
    public static boolean loadDriver(ClassLoader classLoader, String driverClassName) {
        try {
            Class<?> loadedClass = classLoader.loadClass(driverClassName);

            if (!Driver.class.isAssignableFrom(loadedClass)) {
                return false;
            }

            @SuppressWarnings("unchecked") // guarded by previous check
            Class<Driver> driverClass = (Class<Driver>) loadedClass;
            Constructor<Driver> driverConstructor = driverClass.getConstructor();

            // make Constructor accessible if it is private
            boolean isConstructorAccessible = driverConstructor.isAccessible();
            if (!isConstructorAccessible) {
                driverConstructor.setAccessible(true);
            }

            try {
                Driver driver = driverConstructor.newInstance();
                registerDriver(new DriverProxy(driver));
            } finally {
                driverConstructor.setAccessible(isConstructorAccessible);
            }

            return true;
        } catch (RuntimeException e) {
            return false;
        } catch (Exception e) {
            return false;
        }
    }


    /**
     * Rollback any changes made on the given connection.
     */
    public static void rollback(Connection conn) throws SQLException {
        if (conn != null) {
            conn.rollback();
        }
    }

    /**
     * Performs a rollback on the <code>Connection</code> then closes it,
     * avoid closing if null.
     *
     */
    public static void rollbackAndClose(Connection conn) throws SQLException {
        if (conn != null) {
            try {
                conn.rollback();
            } finally {
                conn.close();
            }
        }
    }

    /**
     * Performs a rollback on the <code>Connection</code> then closes it,
     * avoid closing if null and hide any SQLExceptions that occur.
     *
     */
    public static void rollbackAndCloseQuietly(Connection conn) {
        try {
            rollbackAndClose(conn);
        } catch (SQLException e) { // NOPMD
            // quiet
        }
    }

}


3.2、QueryRunner类源码

update部分的源码

所有public修饰的update方法都会调用丰面这个方法。注意第二个参数boolean closeConn

private int update(Connection conn, boolean closeConn, String sql, Object... params)


   /**
     * Execute an SQL INSERT, UPDATE, or DELETE query without replacement
     * parameters.
     *
     * @param conn The connection to use to run the query.
     * @param sql The SQL to execute.
     * @return The number of rows updated.
     * @throws SQLException if a database access error occurs
     */
    public int update(Connection conn, String sql) throws SQLException {
        return this.update(conn, false, sql, (Object[]) null);
    }

    /**
     * Execute an SQL INSERT, UPDATE, or DELETE query with a single replacement
     * parameter.
     *
     * @param conn The connection to use to run the query.
     * @param sql The SQL to execute.
     * @param param The replacement parameter.
     * @return The number of rows updated.
     * @throws SQLException if a database access error occurs
     */
    public int update(Connection conn, String sql, Object param) throws SQLException {
        return this.update(conn, false, sql, new Object[]{param});
    }

    /**
     * Execute an SQL INSERT, UPDATE, or DELETE query.
     *
     * @param conn The connection to use to run the query.
     * @param sql The SQL to execute.
     * @param params The query replacement parameters.
     * @return The number of rows updated.
     * @throws SQLException if a database access error occurs
     */
    public int update(Connection conn, String sql, Object... params) throws SQLException {
        return update(conn, false, sql, params);
    }

    /**
     * Executes the given INSERT, UPDATE, or DELETE SQL statement without
     * any replacement parameters. The <code>Connection</code> is retrieved
     * from the <code>DataSource</code> set in the constructor.  This
     * <code>Connection</code> must be in auto-commit mode or the update will
     * not be saved.
     *
     * @param sql The SQL statement to execute.
     * @throws SQLException if a database access error occurs
     * @return The number of rows updated.
     */
    public int update(String sql) throws SQLException {
        Connection conn = this.prepareConnection();

        return this.update(conn, true, sql, (Object[]) null);
    }

    /**
     * Executes the given INSERT, UPDATE, or DELETE SQL statement with
     * a single replacement parameter.  The <code>Connection</code> is
     * retrieved from the <code>DataSource</code> set in the constructor.
     * This <code>Connection</code> must be in auto-commit mode or the
     * update will not be saved.
     *
     * @param sql The SQL statement to execute.
     * @param param The replacement parameter.
     * @throws SQLException if a database access error occurs
     * @return The number of rows updated.
     */
    public int update(String sql, Object param) throws SQLException {
        Connection conn = this.prepareConnection();

        return this.update(conn, true, sql, new Object[]{param});
    }

    /**
     * Executes the given INSERT, UPDATE, or DELETE SQL statement.  The
     * <code>Connection</code> is retrieved from the <code>DataSource</code>
     * set in the constructor.  This <code>Connection</code> must be in
     * auto-commit mode or the update will not be saved.
     *
     * @param sql The SQL statement to execute.
     * @param params Initializes the PreparedStatement‘s IN (i.e. ‘?‘)
     * parameters.
     * @throws SQLException if a database access error occurs
     * @return The number of rows updated.
     */
    public int update(String sql, Object... params) throws SQLException {
        Connection conn = this.prepareConnection();

        return this.update(conn, true, sql, params);
    }

    /**
     * Calls update after checking the parameters to ensure nothing is null.
     * @param conn The connection to use for the update call.
     * @param closeConn True if the connection should be closed, false otherwise.
     * @param sql The SQL statement to execute.
     * @param params An array of update replacement parameters.  Each row in
     * this array is one set of update replacement values.
     * @return The number of rows updated.
     * @throws SQLException If there are database or parameter errors.
     */
    private int update(Connection conn, boolean closeConn, String sql, Object... params) throws SQLException {
        if (conn == null) {
            throw new SQLException("Null connection");
        }

        if (sql == null) {
            if (closeConn) {
                close(conn);
            }
            throw new SQLException("Null SQL statement");
        }

        PreparedStatement stmt = null;
        int rows = 0;

        try {
            stmt = this.prepareStatement(conn, sql);
            this.fillStatement(stmt, params);
            rows = stmt.executeUpdate();

        } catch (SQLException e) {
            this.rethrow(e, sql, params);

        } finally {
            close(stmt);
            if (closeConn) {
                close(conn);
            }
        }

        return rows;
    }


query部分的源码

所有的public修饰的query方法都会调用下面的方法。注意第二个参数boolean closeConn

private <T> T query(Connection conn, boolean closeConn, String sql, ResultSetHandler<T> rsh, Object... params)


    /**
     * Execute an SQL SELECT query with replacement parameters.  The
     * caller is responsible for closing the connection.
     * @param <T> The type of object that the handler returns
     * @param conn The connection to execute the query in.
     * @param sql The query to execute.
     * @param rsh The handler that converts the results into an object.
     * @param params The replacement parameters.
     * @return The object returned by the handler.
     * @throws SQLException if a database access error occurs
     */
    public <T> T query(Connection conn, String sql, ResultSetHandler<T> rsh, Object... params) throws SQLException {
        return this.<T>query(conn, false, sql, rsh, params);
    }

    /**
     * Execute an SQL SELECT query without any replacement parameters.  The
     * caller is responsible for closing the connection.
     * @param <T> The type of object that the handler returns
     * @param conn The connection to execute the query in.
     * @param sql The query to execute.
     * @param rsh The handler that converts the results into an object.
     * @return The object returned by the handler.
     * @throws SQLException if a database access error occurs
     */
    public <T> T query(Connection conn, String sql, ResultSetHandler<T> rsh) throws SQLException {
        return this.<T>query(conn, false, sql, rsh, (Object[]) null);
    }

    /**
     * Executes the given SELECT SQL query and returns a result object.
     * The <code>Connection</code> is retrieved from the
     * <code>DataSource</code> set in the constructor.
     * @param <T> The type of object that the handler returns
     * @param sql The SQL statement to execute.
     * @param rsh The handler used to create the result object from
     * the <code>ResultSet</code>.
     * @param params Initialize the PreparedStatement‘s IN parameters with
     * this array.
     * @return An object generated by the handler.
     * @throws SQLException if a database access error occurs
     */
    public <T> T query(String sql, ResultSetHandler<T> rsh, Object... params) throws SQLException {
        Connection conn = this.prepareConnection();

        return this.<T>query(conn, true, sql, rsh, params);
    }

    /**
     * Executes the given SELECT SQL without any replacement parameters.
     * The <code>Connection</code> is retrieved from the
     * <code>DataSource</code> set in the constructor.
     * @param <T> The type of object that the handler returns
     * @param sql The SQL statement to execute.
     * @param rsh The handler used to create the result object from
     * the <code>ResultSet</code>.
     *
     * @return An object generated by the handler.
     * @throws SQLException if a database access error occurs
     */
    public <T> T query(String sql, ResultSetHandler<T> rsh) throws SQLException {
        Connection conn = this.prepareConnection();

        return this.<T>query(conn, true, sql, rsh, (Object[]) null);
    }

    /**
     * Calls query after checking the parameters to ensure nothing is null.
     * @param conn The connection to use for the query call.
     * @param closeConn True if the connection should be closed, false otherwise.
     * @param sql The SQL statement to execute.
     * @param params An array of query replacement parameters.  Each row in
     * this array is one set of batch replacement values.
     * @return The results of the query.
     * @throws SQLException If there are database or parameter errors.
     */
    private <T> T query(Connection conn, boolean closeConn, String sql, ResultSetHandler<T> rsh, Object... params)
            throws SQLException {
        if (conn == null) {
            throw new SQLException("Null connection");
        }

        if (sql == null) {
            if (closeConn) {
                close(conn);
            }
            throw new SQLException("Null SQL statement");
        }

        if (rsh == null) {
            if (closeConn) {
                close(conn);
            }
            throw new SQLException("Null ResultSetHandler");
        }

        PreparedStatement stmt = null;
        ResultSet rs = null;
        T result = null;

        try {
            stmt = this.prepareStatement(conn, sql);
            this.fillStatement(stmt, params);
            rs = this.wrap(stmt.executeQuery());
            result = rsh.handle(rs);

        } catch (SQLException e) {
            this.rethrow(e, sql, params);

        } finally {
            try {
                close(rs);
            } finally {
                close(stmt);
                if (closeConn) {
                    close(conn);
                }
            }
        }

        return result;
    }





开源组件:(3)dbutils

标签:dbutils

原文地址:http://lsieun.blog.51cto.com/9210464/1787597

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