How to search a table (tbl) with this records:
_id name
----- ----------
1 antónio
2 antonio
3 antõnio
4 ANTONIO
5 ANTÓNIO
select * from tbl where name like "%to%" COLLATE LOCALIZED;
The result is:
_id name
----- ----------
2 antonio
4 ANTONIO
but the result must be all 5 records!