Sqlite数据库支持波斯/阿拉伯编码吗?

发布于 2024-11-07 09:56:31 字数 666 浏览 1 评论 0原文

我在 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");

I work with Sqlite database in C# and I have this question: Does Sqlite database support Persian/Arabic encoding? Because I have written some Arabic/Persian data in it and when I want to read data from database it is read in unsuitable form!!!enter image description here

my code :

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);

thanks .

next of my code :

DataSet ds;
ds = SQLite_DB.Select_DB(SQLite_DB.Con_string("data.s3db"), "select * from info");

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

淡淡绿茶香 2024-11-14 09:56:31

只要您使用 版本 3 或更高版本,您就可以使用 UTF- 8 / UTF-16,这是阿拉伯语的最佳选择。

So long as you're using Version 3 or higher, you'll be able to use UTF-8 / UTF-16, which is your best bet for Arabic.

夜吻♂芭芘 2024-11-14 09:56:31

简而言之:不

。SQLite 仅支持非常非常有限的编码:UTF-8 和 UTF-16(多种)。

幸运的是,UTF-8 非常适合表达阿拉伯语或波斯语,或任何其他语言(包括克林贡语,如果您感兴趣的话)。

当然,您的工具链的其他部分可能会搞砸编码,请检查 C#.net SQLite 包装器的文档以及您的 Forms 代码。

In short: No.

SQLite support only a very, very limited number of encodings: UTF-8 and UTF-16 (multiple varieties).

Fortunately, UTF-8 is perfectly suitable for expressing Arabic or Persian, or any other language (including Klingon, should the fancy grab you).

It is posible, of course, that some other part of your toolchain is bungling the encoding, check the documentation for the C#.net SQLite wrapper, and your Forms code.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文