I am using glob operator with "?" wildcharater.The problem is - it is case sensitive.
So suppose I want to search for "Hola", then below query does not work.
select * from tableName where columnName glob 'ho?a';
I can use LOWER or UPPER keywords with columnName , but then it also it fails for the text which is a combination of lower and upper case letters.
Please give your inputs.