赞
踩
这个错误是使用c3p0-0.9.2-pre1.jar配置数据库的时候,按照字面意思就是说:SQLException异常:QueryRunner需要一个数据源以这种方式调用,或者应该传入的连接池。我们看前半段,需要一个数据源说明问题在于是否有数据源,后半句是说明是否有连接池。
//创建QueryRunner的两种方法
第一种:
QueryRunner runner=new QueryRunner();
int r=runner.update(C3p0Utils.getConnection(),sql,user.getName(),user.getPassword());
第二种:
QueryRunner runner=new QueryRunner(C3p0Utils.getDataSource());
int r=runner.update(sql,user.getName(),user.getPassword());
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。