I use UNIDac (Version 3.00.0.2) to connect a SQLite database with a Delphi 6 application.
I also use the SQLite administrator to check the state of my database.
I have a problem with the data format when I have some accents in the characters (I speak french so we do have a lot of accents

For example :
Inserted from Delphi via UNIDac : öööööööööööööööööööööööööööööööööö
Read in SQLite administrator : ööööööööööööööööööööööööö
Inserted from SQLite administrator : èèèèèèèèèèèèèèèèèèèèèèèèèèèèèèèèèèèèèèèèèèèèè
Read in Delphi via UNIDac : Nothing.
I tried with SQLite VARCHAR, NVARCHAR and TEXT datatype. It makes no difference.
I also tried to set the UseUnicode option of the UNIDac connection to "True" and it makes no difference.
I tried to connect the SQLite DB via an ODBC driver (Using standard components and not UNIDac components), I have the same value as in the SQLite administrator.
How can I have the same data format between the UNIDac connection and the SQLite administrator?
Thank you