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 tried:
CREATE TABLE myTable (_all_columns_definitions_) DEFAULT CHARSET=utf8;
but a syntax error arose.