-->
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.  [ 2 posts ] 
Author Message
 Post subject: HQL and ordering question
PostPosted: Mon Oct 03, 2005 5:08 pm 
Newbie

Joined: Fri Aug 12, 2005 5:41 am
Posts: 5
Hi,

I am getting a list of Document objects with this query :

"from Document as d where d.id in (:ids)"

id is the ID in the document table and is mapped to a Long
ids is an Array of Long

My question is : how to get the results in the same order than in the array given as parameter? Is it possible with HQL?

Thanks

Thomas


Top
 Profile  
 
 Post subject:
PostPosted: Mon Oct 03, 2005 6:27 pm 
Hibernate Team
Hibernate Team

Joined: Tue Aug 26, 2003 6:10 am
Posts: 8615
Location: Neuchatel, Switzerland (Danish)
that stuff is db dependent, you need to process the result your self or just do this *AFTER* you have run the query (otherwise you will get multiple selects):

foreach id in ids
doc = session.get(Document.class,id);

that would also do the trick.

_________________
Max
Don't forget to rate


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

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.