I'm using the .startsWith() filter in a JDOQL query but it's case sensitive. So startsWith("ab") doesn't return "Abc" result and so on.

Will I need to use a SQL query to avoid this ?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

So combine it with toUpperCase() then perhaps field.toUpperCase().startsWith("AB")

Edit : fix method names

link|improve this answer
omg why didn't I think of combining like with any extensions methods. I feel really dumb now. The methods name are toUpperCase()/toLowerCase(). Thanks – DrDro May 19 '10 at 15:04
Simple rule for JDOQL : think how you would express a condition in Java, and then check that all methods and operators are available in JDOQL - they usually are. – DataNucleus May 20 '10 at 12:24
feedback

Your Answer

 
or
required, but never shown

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