hibernate中的count(*)

有以下方式

final String countHql="select count(*) from ExcelInfor";
//计算总记录数
int count=Integer.parseInt(session.createSQLQuery(countHql).list().get(0).toString());
int count=((Long)(session.createQuery(countHql).iterate().next())).intValue();
int count=((Integer)(session.createQuery(countHql).uniqueResult()).intValue();
 

你可能感兴趣的:(Hibernate)