It doesn't actually matter how you store it as under the hood SQLite stores everything as string. You can dso dirty type conversion tricks when reading. >From my experience SQLite uses ANSI strings though so in order to read your Unicode data back you actually have to use byte arrays for reading, and then convert the byte array to unicode string. What the OP showed is an example of two bytes per character, misrepresented as an ANSI string.
-- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

