81

Assuming that I want to write the following HQL query:

FROM Cat c WHERE c.id IN (1,2,3)

what is the proper way of writing this as a parametrized query, e.g.

FROM Cat c WHERE c.id IN (?)
Robert Munteanu
  • 63,405
  • 31
  • 191
  • 270

3 Answers3

131

I am unsure how to do this with positional parameter, but if you can use named parameters instead of positional, then named parameter can be placed inside brackets and setParameterList method from Query interface can be used to bind the list of values to this parameter.

...
Query query = session.createQuery("FROM Cat c WHERE c.id IN (:ids)");
query.setParameterList("ids", listOfIds);
...
Michael Myers
  • 178,094
  • 41
  • 278
  • 290
Matej
  • 5,122
  • 1
  • 25
  • 25
12

Older versions of Hibernate may not have the setParameterList method on Query. You can still call setParameter("ids", listOfIds); on the older one for the same effect.

Manuel M
  • 745
  • 1
  • 8
  • 23
Travis
  • 3,579
  • 1
  • 20
  • 24
  • 5
    Why has this been changed anyways? Just spent an hour figuring out why `IllegalArgumentException in class: org.ase.mip.persistence.entities.BaseEntityImpl, getter method of property: id (BasicPropertyAccessor.java:186))` was happening. I called `setParameter` instead of `setParameterList`. DOH! – opncow Apr 04 '13 at 11:10
-4

Named parameters are better than positional parameters, we should be careful in looking at the order/position - while named is easy.

Named:

Query query = session.createQuery("select count(*) from User"+" where userName=:userName and passWord=:passWord");
        query.setString("userName", userName);
        query.setString("passWord", passWord);

Positional:

Query query=em.createQuery("SELECT e FROM Employee e WHERE e.empId = ? and  e.empDepartment = ?");
query.setParameter(1, employeId);
query.setParameter(2, empDepartment);