Filter with case insensitive in SQLite #956
diegocgaona
started this conversation in
Ideas
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I want to filter records on a SQLite DB without case sensitive, but I didn't found a solution, it works fine if I filter with the correct case.
I'm using the filter like this:
I found this:
https://stackoverflow.com/questions/973541/how-to-set-sqlite3-to-be-case-insensitive-when-string-comparing
And in SQLite an case insensitive filter could be used like:
SELECT * FROM ... WHERE name = 'someone' COLLATE NOCASE
The
COLLATE NOCASE
is the option I need. It's possible with Tortoise?Any help would be appreciated.
Thanks!
Beta Was this translation helpful? Give feedback.
All reactions