Sqlite3 by default sorts only by ascii letters. I tried to look in google, but the only thing I found were informations about collations. Sqlite3 has only NOCASE, RTRIM and BIARY collations. How to add support for a specific locale? (I'm using it in Rails application)
|
|
|
|
|
|
|
SQLite supports integration with ICU. According to the Readme file,
|
||
|
|
|
|
I accepted Doug Currie answer, but I want to add some "algorithm" how to do it, becouse sqlite3 documentation is very strange (at least for me). Ok, we have working sqlite3 and now:
|
|||
|
|
|
|
you would have to write your own custom collation function. see Case-insensitive UTF-8 string collation for SQLite (C/C++) for a related SO question and answer. apparently, this is not trivial. |
||
|
|
