I've stored string in an SQL database (android): ie:
CREATE TABLE table ( type_t TEXT, description TEXT);
INSERT INTO fiche111 VALUES('p','Peut être allumée par la chaleur par des étincelles');
......
the matter is when a recover le string, all accents a repalced by en strange caractere [�] with an ? inside.
How can i resolve this and retrieve the correct accent of the original string?
thx in advance,