In Ormlite, is it possible to make case-insensitive query without writing the actual SQL?
For example, if I am looking for
column name - "AccountName" and query on the column, I would like to get results for all "Finance", "fInance", "FINANCE", etc. if I do search on "finance".
I was wondering if there's a functional support for this or if I need to write a SQL for it.
Thank you!