I'm using H2, and LIKE queries seem to be case sensitive. What should I do to search fields without being case sensitive?
For example, right now I have:
Client.findAll(Like(field, "%"+v+"%"))
In SQL I can write SELECT FIRST FROM CLIENT WHERE UPPER(FIRST) LIKE '%A%';
So is there a way to specify a database function in a query (without using SQL)?
Thanks.