vote up 0 vote down star

Hi,

I have a sql statement which I want to move it into hibernate criteria, but I am not clue how to do this.

The problem is one of the WHERE clause which looks like the following

...(skip other parts)... ? ILIKE strprefix||'%' ...(continue)

strprefix is the column name, the ? is the place i need to fill in the value.

With criteria, I can use

criteria.add(Expression.ilike(propertyName, value));

but in this case, how can i do this.

Thanks in advance!

flag

2 Answers

vote up 0 vote down

but since sql statement can do that, i wonder if there is something equivalent in hibernate.

for example, I have a value 'abcde 126783', and in table, there store strprefix as abcde, so it will bring back that entry in database.

link|flag
vote up 0 vote down

You can't do this in Criteria, columns are set since they represent the properties in your domain object. You need to query against the property not the other way around.

link|flag
The closest you can get is .add(Restrictions.eqProperty("propertyName","otherPropertyName") which will not do what you want – non sequitor Nov 4 at 19:47

Your Answer

Get an OpenID
or

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