Hello,
I use database with the sqlite include/require, and I have a Search mechanism on my app. The problem is when I try to search (db:nrows(query) with the query being SELECT) something it doesnt return me the row where the title has any kind of accentuation.
For instance:
I do: SELECT * FROM table WHERE title LIKE “%agencia%”
And it returns 0 rows, even thought I have a row with “agência” on the title.
Any solution or “workaround” for this?
Thanks.