-->
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: Syntax for binding an array parameter in a query string?
PostPosted: Sun May 08, 2005 2:42 am 
Beginner
Beginner

Joined: Wed Apr 13, 2005 2:03 pm
Posts: 34
If I have a query:

String sql = "from Cat cat where cat.id in :keys";
Query q = getSession().createQuery(sql);

How do I bind an array into the :keys parameter?

There doesn't seem to be a Query.setArray() method, and the generic Query.setParameter("keys", new Object[] {"foo", "bar"}) doesn't seem to be working.

I know I can do this with the Criteria api, but I can't seem to find a sample of how to do this with the query interface.


Top
 Profile  
 
 Post subject:
PostPosted: Mon May 09, 2005 9:48 am 
Hibernate Team
Hibernate Team

Joined: Tue Aug 26, 2003 3:00 pm
Posts: 1816
Location: Austin, TX
First, the query should be:
from Cat cat where cat.id in (:keys)

Next, the method is Query.setParameterList() which is overloaded where one form takes an Object array


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.