标签:scala exception long scalar 对象 find col 数据库 object
/**
* 获取数据库总数据条数
* @return
* @throws SQLException
*/
public int FindTotalCount() throws SQLException {
// TODO Auto-generated method stub
QueryRunner qr=new QueryRunner(DataSourceUtils.getDataSource());
String sql="select count(*) from product ";
//((Long) qr.query(sql, new ScalarHandler())).intValue() ;
/qr.query()返回object类型 ,先转成 ScalarHandler的Long类型 然后 在转为 int类型
return ((Long) qr.query(sql, new ScalarHandler())).intValue();
}
ScalarHandler对象获取 数据库中的数据是注意转换
标签:scala exception long scalar 对象 find col 数据库 object
原文地址:http://www.cnblogs.com/nextgg/p/7710091.html