使用 Delphi 6 从 SQL Server 读取 unicode 字符串

发布于 2024-09-08 12:40:44 字数 264 浏览 6 评论 0原文

我需要使用 Delphi 6 和 ADO 从 SQL Server 2008 数据库读取 nvarchar(max) 字段。我可以很好地处理 unicode 文本,但在我查看它之前,ADO 组件似乎已将字符串“预转换”为代码页。

我尝试以 TBlobField 的形式访问该字段,但它也给了我转换后的版本:我存储了代表 5 个中文字符的 10 个字节的数据,BlobSize 返回 5。

任何人都可以建议一种从 blob 获取原始内存的方法吗字段没有转换?

I need to read a nvarchar(max) field from a SQL Server 2008 database using Delphi 6 and ADO. I can handle the unicode text just fine but it seems the ADO component is "preconverting" the string to code page before I even get to have a look at it.

I've tried accessing the field as a TBlobField but it gives me the converted version as well: I'm storing 10 bytes of data representing 5 chinese characters and BlobSize returns 5.

Could anyone suggest a way to get the raw memory from the blob field without having it converted ?

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

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

发布评论

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

评论(1

萌逼全场 2024-09-15 12:40:44

我找到了。事实证明这非常简单:像打开普通字段一样打开数据集,然后执行以下操作:

AQuery.FieldByName('LocalText').SetFieldType(ftWideString);
WSBuffer := (AQuery.FieldByName('LocalText') as TWideStringField).Value;

(WSBuffer 是 WideString 类型)。

I found it. It turned out to be really simple: Open the dataset as if it was a normal field and the do the following:

AQuery.FieldByName('LocalText').SetFieldType(ftWideString);
WSBuffer := (AQuery.FieldByName('LocalText') as TWideStringField).Value;

(WSBuffer is a WideString type).

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