Hi,
I'm a Hibernate newbie and I've a simple dumb question: I'm trying to construct a HQL statement for searching a database
string field. What I want is kind of like:
select n.id from ContactName as n where n.name like
attern%
so if the
pattern is 'a', I get all the contacts whose name start with an A, for example. However, I can't seem to get this to work -- what's the correct syntax for this? I also tried to add % in the pattern string directly, but that doesn't work neither.
Thanks a lot!!!
Adrian