How to store other language in LiteDB?

208 views Asked by At

I am making a quiz game with C# in which I wanna store Korean as question . I'm not sure that It is storing Korean but when I fetch data then it show like ??? instead of Korean characters , so what I can do to show or use Korean character in my program?

1

There are 1 answers

0
Matt On

Your issue will be around the code page being used. You can test the encoding with this pragma:

PRAGMA encoding;

Note that you can’t change the encoding for an existing database. You will need to create a new database with a specific encoding then open a SQLite connection to a new file.

Then:

PRAGMA encoding = "UTF-8"; // change as needed

You’ll need to recreate the schema / structure and import all the data.