vote up 2 vote down star

In Hibernate 3, is there a way to do the equivalent of the following MySql limit in HQL.

select * from a_table order by a_table_column desc limit 0, 20;

I don't want to use setMaxResults if possible. This definitely was possible in the older version of Hibernate/HQL, but seems to have disappeared.

flag

2 Answers

vote up 3 vote down check

In typically patronising fashion, Gavin King posted this on the Hibernate forum a few years back when asked about why this worked in Hibernate 2 but not in Hibernate 3:

Limit was never a supported clause in HQL. You are meant to use setMaxResults().

So if it worked in Hibernate 2, it seems that was by coincidence, rather than by design. I think this was because the Hibernate 2 HQL parser would replace the bits of the query that it recognised as HQL, and leave the rest as it was, so you could sneak in some native SQL. Hibernate 3, however, has a proper AST HQL Parser, and it's a lot less forgiving.

I think Query.setMaxResults() really is your only option.

link|flag
I was hoping somehow that they realized that that is annoying. Also, if you looked at the source code, they had implemented it for every database, and every database is different. Oh well, that's sad. – stevedbrown Aug 6 at 15:45
I would argue that Hibernate 3's approach is more correct. Your usage of Hibernate is meant to be database-agnostic, so you should have to do these sorts of things in an abstract manner. – matt b Aug 6 at 16:35
1  
I agree, but it makes migration is royal pain in the ass when features are dropped like that. – skaffman Aug 6 at 16:38
vote up 2 vote down

If you don't want to use setMaxResults() on the Query object then you could always revert back to using normal SQL.

link|flag
1  
That's not really all that exciting. – stevedbrown Aug 6 at 15:39
I don't find HQL exciting either. Why not write a view on your DB server that applies the limit and then get HQL to look at that view :P – pjp Aug 6 at 15:59
It's just one of those things, while SQL is much easier than HQL for each query, creating views and writing native SQL tends to be not so great for refactoring. I try to avoid it when I can. That actual real problem was the I wrote my MySQL query wrong anyways and thought setMaxResults was being weird. It wasn't. – stevedbrown Aug 6 at 16:07

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.