优点 ole db 提供程序 10.0.0.3 adsoledb for 64 位 - 无法让它工作
尝试让 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据我从评论中收集到的信息,听起来您的应用程序正在作为 32 位应用程序运行。如果是这样,它将无法加载 64 位版本的 OLE DB 提供程序。
conn.Open();
调用可能会导致如下错误:测试此问题的一种方法是安装 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: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.