I am using the .startsWith () filter in a JDOQL query, but it is case sensitive. Thus, startWith ("ab") does not return the result "Abc" and so on.
Do I need to use a SQL query to avoid this?
So combine it with toUpperCase (), maybe field.toUpperCase (). StartsWith ("AB")
Edit: fix method names