使用 Delphi 6 从 SQL Server 读取 unicode 字符串
我需要使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我找到了。事实证明这非常简单:像打开普通字段一样打开数据集,然后执行以下操作:
(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:
(WSBuffer is a WideString type).