Kishore  uddavolu wrote:
> Data is being retrieved using c# using system.data.sqlite-sqlitedatareader.
> We are able to retrive non German characters. Problem is with reading
> German characters. We tried with text and nvarchar types.but German
> characters are showing as question mark.

SQLite uses UTF-8, and in any case does not change the contents of
strings.  System.Data.SQLite automatically handles conversions between
UTF-8 and C#'s native string type, when needed.  The problem must be
with your code that writes or reads the data.


Regards,
Clemens

Reply via email to