I am developing an Android application using SQLite as backend.
I want to make sure all the tables in the database use UTF-8. How can I achieve that?
I have
You need to make use of the encoding PRAGMA:
PRAGMA encoding = "UTF-8";