Hibernate version:
3,1
Mapping documents:
NA
Code between sessionFactory.openSession() and session.close():
NA
Full stack trace of any exception that occurs:
NA
Name and version of the database you are using:
NA
The generated SQL (show_sql=true):
NA
Debug level Hibernate log excerpt:
I have a hql query that uses "in" example is
Code:
where name in (:name)
where :name might John, Mary, Steven
but I would like to also pass in partial names
such as
Joh%, Ma%, St%
is this possible? I have tried
in,
like in and
in like but thos are not valid.