我在 C# 中使用 Sqlite 数据库,我有一个问题:Sqlite 数据库是否支持波斯语/阿拉伯语编码?因为我在其中写了一些阿拉伯语/波斯语数据,当我想从数据库中读取数据时,它以不合适的形式读取!!!
我的代码:
int len = ds.Tables["tbl"].Rows.Count;
int index = rnd.Next(0, len - 1);
//notifyIcon1.ShowBalloonTip(15, "پیام عشق ", ds.Tables["tbl"].Rows[index][0].ToString(), ToolTipIcon.Info);
string str = ds.Tables["tbl"].Rows[index][0].ToString();
MessageBox.Show(str);
谢谢 。
我的代码的下一个:
DataSet ds;
ds = SQLite_DB.Select_DB(SQLite_DB.Con_string("data.s3db"), "select * from info");