mysql count 返回值类型_Hibernate 执行SQL语句的count函数返回BigDecimal类型 | 学步园...

当前使用的Hibernate版本是3.2.6,数据库是Oracle11g,当使用 HibernateTemplate 的execute方法执行sql语句(不是 hql 语句)查询的时候,使用count聚合函数,返回结果是

BigDecimal 类型,不是Integer也不是Long,需强转成 BigDecimal 类型,然后调用其对象的 intValue 或 longValue 方法就可以了。

与上不同的是,当调用HibernateTemplate的 find 方法执行 hql 时,如果hql中有

count 函数,返回的结果是 Long 类型。

注:使用Criteria的count查询时返回的是Integer类型。

public int getAlarmCountByFilter(final AlarmFilterBean filter,final int alarmCatelog) {

return getHibernateTemplate().execute(new HibernateCallback() {

@Override

public Integer doInHibernate(Session session) throws HibernateException, SQLException {

Criteria c = session.createCriteria(ActiveAlarmBean.class);

c.setProjection(Projections.rowCount());

addFilterRestrictions(c,filter,alarmCatelog);

return (Integer)c.uniqueResult();

}

});

}

----------------------------------------------------------------------------------------------------------分割线-----------------------------------------------------------------------------------------------------------

将数据库改为MySQL5.1后,执行sql的count语句返回的是BigInteger类型,于是产生ClassCastException异常,为了不再产生类似问题,可将执行SQL语句返回的List中已知的数值类型强转成Number,然后调用Number的longValue(),inValue(),floatValue()方法得到想要的数值类型即可。

final String sql = "select t.TEMPLATE_ID,count(d.TEMPLATE_ID) from RES_INPUT_TEMPLATE t left join "+tableName+" d"

+" on t.TEMPLATE_ID = d.TEMPLATE_ID "

+" where t.TEMPLATE_TYPE = "+templateType+" "

+" group by t.TEMPLATE_ID";

Map idCountMap = new HashMap();

List list = inputTemplateDao.getHibernateTemplate().execute(new HibernateCallback>() {

@SuppressWarnings("unchecked")

public List doInHibernate(Session session)

throws HibernateException, SQLException {

return session.createSQLQuery(sql).list();

}

});

for(Object[] result : list){

idCountMap.put(((Number)result[0]).longValue(), ((Number)result[1]).intValue());

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值