Is there a way to do case insensitive queries together with path
expressions?

The following works fine: 
        Criteria crit = new Criteria();
        crit.addLike("upper(name)", name.toUpperCase());

But the following gives me a StringIndexOutOfBoundsException:
        Criteria crit = new Criteria();
        crit.addLike("upper(supplier.name)", name.toUpperCase());

Thanks!
Juergen



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to