"Igor Tandetnik" <[email protected]> wrote in message news:[email protected] > "Wili" <[email protected]> wrote in > message news:[email protected] >> it is possible using charset ISO-8859-1 in sqlite? > > No, not really. Convert your strings to UTF-8 before passing them to > SQLite, and to whatever encoding you want when getting them out.
Or to/from UTF-16. Might be easier - all you have to do to convert ISO-8859-1 to UTF-16 is zero-expand each byte to a 16-bit value, and to convert back, just drop those extra zeros. Not that converting to/from UTF-8 is much more complicated. Igor Tandetnik _______________________________________________ sqlite-users mailing list [email protected] http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

