Hi, I have an app written in Android/Xamarin. Database [SQLite version 3.7.4] is using custom collation sequence. Collation sequence is loaded into DB on app startup. // as described here: http://www.codeproject.com/Articles/44349/Case-Insensitive-Sort-of-UTF-Data-Using-System-Da
Now when I try to access database file outside of the app [eg. from console/terminal] i often end up with error: Error: no such collation sequence: UTF8CI // cause collation is loaded only in app context I want to create "loadable module" with proper collation seqeunce and load it by eg. sqlite>.load /path/to/my/module.so Question: Can anyone tried to compile "custom sqlite extension" [best regarding setting collation sequence] for Android and successfully loaded it into Android emulator sqlite? Ane recipies will be appreciated. Best regards GT _______________________________________________ sqlite-users mailing list sqlite-users@sqlite.org http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users