SQLite character encoding for Google Gears

Posted by MHD on Stack Overflow See other posts from Stack Overflow or by MHD
Published on 2010-04-28T08:18:02Z Indexed on 2010/04/28 8:33 UTC
Read the original article Hit count: 420

We're using jQuery to get a JSON-string from our server (UTF-8 response, also UTF-8 request through jQuery) and put this JSON into a Google Gears WorkerPool. This workerpool processes the JSON and stores it into a Gears database (SQLite).

It turns out that, apparently, SQLite stores data using iso-8859-1 rather than UTF-8. Since we're trying to store user names that might contain Cyrillic characters (and others that you might encounter in Europe), this goes horribly wrong.

Can anyone tell me how to change the character encoding in either the Gears WorkerPool or the SQLite database that Gears employs? Of course, if I'm looking in the wrong direction with my problem, feel free to offer alternatives!

Unfortunately, HTML5 isn't an option as we're supposed to support IE7 primarily.

© Stack Overflow or respective owner

Related posts about google-gears

Related posts about sqlite