show/hide this revision's text 4 removed another unneeded backslash

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:

  1. Download ICU extention for sqlite

  2. Compile it:

    gcc -shared icu.c `icu-config --ldflags` -o libSqliteIcu.so
    

    It is for Linux. I also needed to install additional ICU development package:

    sudo apt-get install libicu-dev
    

    I'm working on 64 bit architecture and I get error with __relocation R_X86_64_32S__ (whatever it means :). GCC suggested adding -fPIC to compile options and it helped.

  3. Run sqlite3. We can load extension with command:

    .load './libSqliteIcu.so'
    

    Assuming that it is in the current directory, we can also specify whole path.

  4. Create new collation:

    SELECT icu_load_collation('pl\_PL'icu_load_collation('pl_PL', 'POLISH');
    

    The first parameter is desired locale and the second is it's (it can be whatever).

  5. Now we can sort data with our new locale:

    SELECT * FROM some_table ORDER BY name COLLATE POLISH;
    

    And it is case insensitive!

show/hide this revision's text 3 removed unnecessary backslashes

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:

  1. Download ICU extention for sqlite

  2. Compile it:

    gcc -shared icu.c `icu-config --ldflags` -o libSqliteIcu.so
    

    It is for Linux. I also needed to install additional ICU development package:

    sudo apt-get install libicu-dev
    

    I'm working on 64 bit architecture and I get error with __relocation R_X86_64_32S__ (whatever it means :). GCC suggested adding -fPIC to compile options and it helped.

  3. Run sqlite3. We can load extension with command:

    .load './libSqliteIcu.so'
    

    Assuming that it is in the current directory, we can also specify whole path.

  4. Create new collation:

    SELECT icu\_load\_collation('pl\_PL'icu_load_collation('pl\_PL', 'POLISH');
    

    The first parameter is desired locale and the second is it's (it can be whatever).

  5. Now we can sort data with our new locale:

    SELECT * FROM some\_table some_table ORDER BY name COLLATE POLISH;
    

    And it is case insensitive!

show/hide this revision's text 2 improved formatting

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:

  1. Download ICU extention for sqlite: http://www.sqlite.org/cvstrac/getfile?f=sqlite/ext/icu/icu.c&v=

  2. Compile it:

    gcc -shared icu.c `icu-config --ldflags-ldflags` -o libSqliteIcu.so
    

    It is for Linux. I also needed to install additional ICU development package:

    sudo apt-get install libicu-dev
    

    I'm working on 64 bit architecture and I get error with relocation R_X86_64_32S__relocation R_X86_64_32S__ (whatever it means :). Gcc GCC suggested adding -fPIC to compile options and it helped.

  3. Run sqlite3. We can load extension with command:

    .load './libSqliteIcu.so'
    

    Assuming that it is in the current directory, we can also specify whole path.

  4. Create new collation:

    SELECT icu_load_collation('pl_PL'icu\_load\_collation('pl\_PL', 'POLISH');
    

    The first parameter is desired locale and the second is it's (it can be whatever).

  5. Now we can sort data with our new locale:

    SELECT * FROM some_table some\_table ORDER BY name COLLATE POLISH
    

    And it is case insensitive!

show/hide this revision's text 1