-->
These old forums are deprecated now and set to read-only. We are waiting for you on our new forums!
More modern, Discourse-based and with GitHub/Google/Twitter authentication built-in.

All times are UTC - 5 hours [ DST ]



Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 1 post ] 
Author Message
 Post subject: Get row count using Criteria
PostPosted: Mon Aug 20, 2012 10:00 am 
Senior
Senior

Joined: Wed Sep 19, 2007 9:31 pm
Posts: 191
Location: Khuntien (Indonesia)
Hi All,

Let's say I have Criteria like this:
Code:
DetachedCriteria dc = buildCriteria();
ProjectionList projectionList = Projections.projectionList();
projectionList.add(Projections.property("username"), "username");
projectionList.add(Projections.count("record"), "totalRecord");
projectionList.add(Projections.groupProperty("username"));
dc.setProjection(projectionList);
....
//c.setFirstResult(10);
//c.setMaxResults(20);


I would like to get total of the record returned by this criteria?

Thanks


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 1 post ] 

All times are UTC - 5 hours [ DST ]


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
© Copyright 2014, Red Hat Inc. All rights reserved. JBoss and Hibernate are registered trademarks and servicemarks of Red Hat, Inc.