优点 ole db 提供程序 10.0.0.3 adsoledb for 64 位 - 无法让它工作

发布于 2024-09-13 09:47:07 字数 170 浏览 8 评论 0原文

尝试让 Advantage OLE DB Provider 的本地服务器版本在 64 位 Windows 7 计算机上运行。安装了 64 位版本 10.00.0.3 版本并复制了我的应用程序。从应用程序目录注册 adsoledb64.dll。我什么也没得到。也不写日志。我必须在 64 位机器上编译应用程序吗?非常困惑和沮丧。

trying to get a local server version of Advantage OLE DB Provider to work on a 64 bit Windows 7 machine. installed the 64 bit version 10.00.0.3 release and copied my application. registered the adsoledb64.dll from the app directory. I get nothing. Doesn't write a log either. Am I going to have to compile the app on the 64 bit machine? very confused and frustrated.

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

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

发布评论

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

评论(1

離人涙 2024-09-20 09:47:07

根据我从评论中收集到的信息,听起来您的应用程序正在作为 32 位应用程序运行。如果是这样,它将无法加载 64 位版本的 OLE DB 提供程序。 conn.Open(); 调用可能会导致如下错误:

The 'Advantage.OLEDB.1' provider is not registered on the local machine.

测试此问题的一种方法是安装 32 位版本的提供程序以查看其是否有效。

或者,您可以考虑使用 使用 .NET 数据提供程序而不是 OLE DB 提供程序。从长远来看,使用本机数据提供程序而不是通过 OLE DB 可能会更简单。

Based on the information I have gleaned from the comments, it sounds as if your application is running as a 32-bit application. If so, it will not be able to load 64-bit version of the OLE DB provider. The conn.Open(); call would likely result in an error such as this:

The 'Advantage.OLEDB.1' provider is not registered on the local machine.

One way to test this would be to install the 32-bit version of the provider to see if it works.

Alternatively, you might consider using the Advantage .NET Data Provider rather than the OLE DB provider. Using a native data provider instead of going through OLE DB might prove simpler in the long run.

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