I would like to use "Ä, Ö and Ü" in my sqlite database but when I use the snippet of code below, I am unable to retrieve the accented characters.
I am accessing the database using android or via sqlite3
CREATE TABLE haltestellen (
id integer primary key autoincrement,
name varchar(64)
);
insert into haltestellen(name) values("Bärenhof");