当前位置:   article > 正文

Java之DBUtils数据库工具类Queryrunner类和ResultSethandle接口的使用_dbrunner类

dbrunner类

eg:

public class C3p0Utils {
	//.在成员变量位置创建一个静态的ComboPooledDtatSource 对象,读取配置数据
private static ComboPooledDataSource dataSource = new ComboPooledDataSource();
//定义一个静态方法 可以返回连接池
	public static DataSource getDataSource() {
		return dataSource;
	}
	//定义一个静态方法 ComboPooledDtatSource 对象中获得数据库连接 Coonection
	public static Connection getConnection() throws SQLException{
		return dataSource.getConnection();
	}
	
import java.sql.SQLException;
import java.util.ArrayList;
import org.apache.commons.dbutils.QueryRunner;
import org.apache.commons.dbutils.handlers.BeanHandler;
import org.apache.commons.dbutils.handlers.BeanListHandler;
import domain.User;

public class C3p0UtilsDao {
	
	public static ArrayList<User>  FinAll() throws SQLException {
		//创建QueryRunner对象
		QueryRunner runner=new QueryRunner(C3p0Utils.getDataSource());
		//定义SQL
		String sql="select * from user";
		//调用方法
		ArrayList<User>	list=(ArrayList<User>) r
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/知新_RL/article/detail/68202
推荐阅读
相关标签
  

闽ICP备14008679号