适用于 64 位 Windows 7 的 Visual FoxPro 驱动程序
同一应用程序在 32 位 Windows 7 Home Premium 操作系统中运行良好,没有任何问题。我在 google 上搜索了 64 位 VFP 驱动程序,发现没有适用于 64 位操作系统的 VFP 驱动程序 链接。请帮助我解决这个问题。
I've installed Visual FoxPro driver from this link on my 64 Bit Windows 7 Home Premium OS and tried to register vfpoledb.dll using REGSVR32. I could able to register this dll but when run my application which accesses VFP database is throwing the following error:
System.InvalidOperationException: The 'VFPOLEDB.1' provider is not registered on the local machine.
The same application is working fine in 32 bit Windows 7 Home Premium OS without any issues. I have googled for 64 bit VFP driver and found out that there are no VFP drivers for 64 bit OS from this link. Kindly help me to resolve this issue.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我发现没有适用于 64 位操作系统的 64 位 VFP 驱动程序。我们所要做的就是更改项目属性中的构建选项,并将 Platform Target 设置为 X86 而不是 Any CPU。构建适用于 X86 的应用程序。请参阅此 了解更多详情。
I have found out that there is no 64 bit VFP Driver for 64 bit OS. All we have to do is to change the build option in project properties and set the Platform Target to X86 instead of Any CPU. Build the application for X86. Please refer to this for more details.
虽然有点晚了,但可能对其他人有帮助:) 您可以使用 适用于 Windows 64 位的优势 OLE DB 提供程序,其工作方式类似于 VFPOLEDB。 python 中的示例:
It's a bit late, but may help somebody else:) You can use Advantage OLE DB Provider for Windows 64-bit, which works like VFPOLEDB. Example in python:
Eric Selje 的博文, Salty Dog Solutions 的文档介绍了如何在 64 位 Windows 上运行 32 位驱动程序。 (您必须在 32 位 ODBC 管理器中设置它们。)
A blog post by Eric Selje, of Salty Dog Solutions, describes how to run the 32-bit drivers on 64-bit Windows. (You must set them up in the 32-bit ODBC Administrator.)