使用 ODBC 从 Lotus Notes 读取 SQL 数据库时未定义的数据类型:nvarchar

发布于 2024-08-20 13:09:47 字数 596 浏览 9 评论 0原文

这是我第二次遇到这种情况,在修改第 3 方数据库结构之前,我想知道是否有人知道更好的解决方案:

我正在从 Lotus Notes Agent (Notes 7) 访问 MS SQL Server 2008 以检索一些数据。我使用 LSXODBC 并且我的“Select”语句工作完美...除了我的代理无法“理解”Nvarchar SQL 字段类型。任何其他数据类型都可以正常工作(可以毫无问题地从数字和日期字段获取值)。

我花了一段时间才弄清楚,我找不到解决方案(除了将 SQL 表上的字段类型修改为 Varchar 而不是 nVarchar)

我可以在 MS SQL 2005 和 2008 中复制这个

。 “解决方案是使用 varchar 类型而不是 nvarchar 创建 SQL 视图,而不是修改表结构。工作正常,但我必须为要从中检索数据的每个表创建一个视图。

我尝试使用 FieldExpectedDataType 方法设置字段类型,但没有成功。仍然有一个 DB_TYPE_UNDEFINED。

我认为可能存在一些配置问题?或者也许我使用的是旧的 LN 版本/ODBC 驱动程序版本?

任何提示将不胜感激。

先感谢您。

迭戈

This is the second time it happens to me and before modifying a 3rd party Database structure I wanted to know if anyone knew a better solution:

I'm accessing a MS SQL Server 2008 from a Lotus Notes Agent (Notes 7) to retrieve some data. I use LSXODBC and my "Select" statement works perfect... Except that my agent cannot "understand" Nvarchar SQL Field types. Any other data types work ok (can get the values from number and dates fields without a problem).

It took me a while to figure it out, and I couldn't find a solution (other than modifying the field types on the SQL table to Varchar instead of nVarchar)

I could replicate this both in MS SQL 2005 and 2008.

Last "elegant" solution was to create an SQL view -instead of modifying table structure- with the varchar types instead of nvarchar. Works ok but I have to create a view for each table I'm retrieving data from.

I tried to set the Field type using FieldExpectedDataType Method but didn't work. Still got a DB_TYPE_UNDEFINED.

I thought there might be some configuration issues? or maybe I'm using an old LN Version / ODBC Driver version?

Any hint would be greatly appreciated.

Thank you in advance.

Diego

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

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

发布评论

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

评论(1

心凉 2024-08-27 13:09:47

旧的 ODBC 驱动程序可能不支持 unicode。直到 SQL Server 2000 才添加它(我相当确定)

An old ODBC driver may not support unicode. It was not added until SQL Server 2000 (I'm fairly sure)

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