How to sort text in sqlite3 with specified locale? - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T15:49:08Zhttp://stackoverflow.com/feeds/question/611459http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/611459/how-to-sort-text-in-sqlite3-with-specified-locale4How to sort text in sqlite3 with specified locale?klew2009-03-04T16:50:51Z2009-11-26T13:24:13Z
<p>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)</p>
http://stackoverflow.com/questions/611459/how-to-sort-text-in-sqlite3-with-specified-locale/611516#6115162Answer by ax for How to sort text in sqlite3 with specified locale?ax2009-03-04T17:03:15Z2009-03-04T17:03:15Z<p>you would have to write your own <a href="http://www.sqlite.org/c3ref/create%5Fcollation.html" rel="nofollow">custom collation function</a>. see <a href="http://stackoverflow.com/questions/181037/case-insensitive-utf-8-string-collation-for-sqlite-c-c">Case-insensitive UTF-8 string collation for SQLite (C/C++)</a> for a related SO question and answer. apparently, this is not trivial.</p>
http://stackoverflow.com/questions/611459/how-to-sort-text-in-sqlite3-with-specified-locale/614609#6146094Answer by Doug Currie for How to sort text in sqlite3 with specified locale?Doug Currie2009-03-05T12:41:40Z2009-03-05T12:41:40Z<p>SQLite <a href="http://www.sqlite.org/cvstrac/fileview?f=sqlite/ext/icu/README.txt" rel="nofollow">supports</a> integration with <a href="http://icu-project.org/" rel="nofollow">ICU</a>. According to the Readme file,
<code>sqlite/ext/icu/README.txt</code>
the <code>sqlite/ext/icu/</code> directory contains source code for the SQLite "ICU" extension, an
integration of the "International Components for Unicode" library with SQLite. </p>
<pre><code>1. Features
1.1 SQL Scalars upper() and lower()
1.2 Unicode Aware LIKE Operator
1.3 ICU Collation Sequences
1.4 SQL REGEXP Operator
</code></pre>
http://stackoverflow.com/questions/611459/how-to-sort-text-in-sqlite3-with-specified-locale/615284#6152843Answer by klew for How to sort text in sqlite3 with specified locale?klew2009-03-05T15:32:42Z2009-11-26T13:24:13Z<p>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). </p>
<p>Ok, we have working sqlite3 and now:</p>
<ol>
<li><p><a href="http://www.sqlite.org/cvstrac/getfile?f=sqlite/ext/icu/icu.c&v=" rel="nofollow">Download ICU extention for sqlite</a></p></li>
<li><p>Compile it:</p>
<pre>
gcc -shared icu.c `icu-config --ldflags` -o libSqliteIcu.so
</pre>
<p>It is for Linux. I also needed to install additional ICU development package:</p>
<pre>
sudo apt-get install libicu-dev
</pre>
<p>I'm working on 64 bit architecture and I get error with <code>__relocation R_X86_64_32S__</code> (whatever it means :). GCC suggested adding <code>-fPIC</code> to compile options and it helped.</p></li>
<li><p>Run sqlite3. We can load extension with command:</p>
<pre>
.load './libSqliteIcu.so'
</pre>
<p>Assuming that it is in the current directory, we can also specify whole path.</p></li>
<li><p>Create new collation:</p>
<pre>
SELECT icu_load_collation('pl_PL', 'POLISH');
</pre>
<p>The first parameter is desired locale and the second is it's (it can be whatever).</p></li>
<li><p>Now we can sort data with our new locale:</p>
<pre>
SELECT * FROM some_table ORDER BY name COLLATE POLISH;
</pre>
<p>And it is case insensitive!</p></li>
</ol>