Hello all
I am developing a WinForms app using .NET 2.0 and am trying to use SQLite as a DB solution. My main problem is that I have trouble seeing data from the DB in the WinForm when the data is in a non english language (in my case greek).
For db administration purposes I use the SQLite administrator which has no trouble at all returning data in greek. But when I load the data in a DataGridView in my form, I get those dreaded "missing character" square symbols.
In order to communicate with the db I use the System.Data.SQLite solution.
Is there something I am missing here? I looked for setting the default collation in the database but did not come up with anything, since SQLite does not support collation values like SQL Server (e.g. COLLATE Greek_CI_AS)
Thanks
P.S. I am using SQLite 3 and System.Data.SQLite.dll 1.0.60. The connection string for the test is:
Data Source=test.db;UseUTF8Encoding=True;