在 64 位 Windows 7 上使用 32 位版本的 ODBC?

发布于 2024-11-24 09:49:52 字数 193 浏览 2 评论 0原文

我在使用 ODBC 和使用 Visual Basic 6(因此它是 32 位)编写的应用程序时遇到问题。看来VB6的ODBC库与Windows 7的64位ODBC不兼容。

返回的错误代码是-2147220992并且它是关于不兼容的体系结构的漫谈。

我可以安装 32 位版本的 ODBC 吗?或者还有其他替代方案吗?

I'm having problem with ODBC and an application written with Visual Basic 6 (so it's 32-bit). It seems that the ODBC library of VB6 is not compatible with the 64-bit ODBC of Windows 7.

The error code returned is -2147220992 and it's rambling about incompatible architectures.

Can I install a 32-bit version of ODBC? Or any other alternatives?

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

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

发布评论

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

评论(3

真心难拥有 2024-12-01 09:50:37

如上所述:

C:\windows\SysWow64\odbcad32.exe 是 32 位版本的 ODBC 管理器的位置。

As mentioned above:

C:\windows\SysWow64\odbcad32.exe is the location for the 32-bit version of the ODBC Administrator.

情场扛把子 2024-12-01 09:50:34

您需要使用 32 位版本的 ODBC。您不能在同一进程中混合使用 32 位和 64 位代码。

然而,这可能不是你的问题。我认为该错误代码是 CONNECT_E_NOCONNECTION 并且可能有各种原因导致您出现此错误,不一定是 32/64 位驱动程序问题。例如,您是否使用 32 位管理工具定义了 ODBC 连接 (DSN)?

最后,我建议您引用精确的错误消息,而不是使用诸如“关于不兼容的体系结构的漫谈”之类的短语。准确的信息将有助于追踪问题。

You need to use the 32 bit version of ODBC. You can't mix 32 and 64 bit code in the same process.

However, that may not be your problem. That error code is, I think, CONNECT_E_NOCONNECTION and there could be all sorts of reasons why you get that, and no necessarily down to 32/64 bit driver issues. For example, did you define the ODBC connection (DSN) with 32 bit admin tools?

Finally, I would recommend that you quote precise error messages rather than using phrases like "rambling about incompatible architectures". Precise information will help track down the problem.

一个人练习一个人 2024-12-01 09:50:32

使用 32 位 odbc 管理器添加您的 DSN:

C:\Windows\SysWOW64\odbcad32.exe

,应该能够看到 32 位 odbc 驱动程序。

use the 32-bit odbc manager to add your DSN:

C:\Windows\SysWOW64\odbcad32.exe

that should be able to see the 32-bit odbc driver.

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