SQLite 中 uniqueidentifier 中的乱码文本

发布于 2024-09-24 09:37:23 字数 924 浏览 2 评论 0 原文

大家好,

我在 .Net/Visual Studio 中使用 Sqlite 时遇到问题,非常需要您的帮助。

问题是:

当通过一些 GUI 工具查看表数据时,我在 Sqlite 数据库中数据类型为“uniqueidentifier”的 ID 列中出现乱码文本(我尝试了不同的工具),

在 . net 代码,但只是让我感到紧张。

更多详细信息在这里:

  1. 当我使用 Sqlite Administrator 打开表时,它在 ID 列中显示乱码文本。

  2. 但是,当我使用可视化设计指定表数据适配器或通用SqliteDataAdaptor来检索表时,ID列显示正常。

以下是我生成乱码数据的方法。

  1. 首先,我使用 Sqlite 连接驱动程序 dll,通过服务器资源管理器将表拖放到 Visual Studio 数据集设计器中。

  2. 以编程方式修改数据,然后使用可视化设计的数据适配器来更新它。

我的怀疑

我怀疑SqliteDataAdaptor(或里面的.net适配器?)在数据库中插入了UNICODE编码的字符串。因此,当通过适配器检索数据时,它会显示良好。但是GUI工具不能处理unicode,所以显示乱码?

最后

我不知道Sqlite数据库中是否有'uniqueidentifier'数据类型。但在我从其他大学收到的数据库文件中,它显示类型为“uniqueidentifier”,而且它似乎正在工作。

提前谢谢大家。

干杯

Hi Dear All,

I am having a problem using Sqlite with .Net/visual studio and need your help very much.

The problem is:

I have garbled text in the ID column with data type 'uniqueidentifier' in Sqlite Database when viewing table data via some GUI tools (I try different tools)

It shows fine when retriving data in .net code, but just making me nervous on it.

More detail is here:

  1. When I open the table with Sqlite Administrator, it show garbled text in the ID column.

  2. BUT, when I use visual design specified table data adaptor or general SqliteDataAdaptor to retrive the table, ID column shows fine.

Here is how I produce garbled data.

  1. First I drag and drop the table to visual studio dataset designer via the server explorer, using Sqlite connection driver dll.

  2. Modify the data programatically, then using the visual designed data adaptor to update it.

My suspection

I suspect that the SqliteDataAdaptor (or the .net adaptor inside?) insert UNICODE encoded string in the database. So when retriving data via the adaptor, it will shows fine. But the GUI tools can't handle unicode, so it shows garbled text?

Last

I don't know whether there's a 'uniqueidentifier' data type in Sqlite database. But on the database file I received from other colleges, it show the type as 'uniqueidentifier', and it seems that it is working.

Thank you all in advance.

Cheers

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

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

发布评论

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

评论(1

我不咬妳我踢妳 2024-10-01 09:37:23

没关系,我已经找到解决办法了。

看起来 Sqlite 默认将 Guid 存储为二进制数据。 .net 希望它是字符串。

因此,使用以下设置将连接字符串设置为 sqlite 数据库将解决该问题:

Data source=somefile;BinaryGUID=False;

请参阅:http://www.connectionstrings.com/sqlite

Never mind, I figured out the work around.

It seems like the Sqlite store the Guid as binary data by default. And .net want it to be string.

So set the connection string to the sqlite database with the follow settings will fix the problem:

Data source=somefile;BinaryGUID=False;

refer to: http://www.connectionstrings.com/sqlite

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