Visual Studio 中的控制台应用程序在调试中工作,但在发布中的 OleDBConnection 上崩溃?
我有一个控制台应用程序,它打开 oleDBConnection 以访问 FoxPro 数据库中的一些数据。
当我在调试模式下运行时,该应用程序运行良好。但是,如果我尝试在“发布”而不是“调试”中运行应用程序,则会在 conn.Open(); 行上崩溃。出现错误,指出我的 VFPOLEDB.1 提供程序未在本地计算机上注册。
我不确定这意味着什么,因为在调试模式下运行时提供程序似乎没有问题,并且所有数据均已从数据库成功返回。
对这里可能发生的事情有什么想法吗?
谢谢吨!
I have a console app that opens an oleDBConnection to access some data from a FoxPro database.
The app works great when I run in Debug. However, if I try to run the app in Release rather than Debug, I crash on the line conn.Open(); with an error stating that my VFPOLEDB.1 provider is not registered on the local machine.
I'm not sure what it means by that since there seemed to be no problem with the provider when run in Debug mode and all the data was successfully returned from the database.
Any ideas on what may be going on here?
Thanks tons!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您拥有的 Visual Studio 是 32 位的,对吗? VS 启动的进程是 64 位的,你猜我是对的吗?
将项目设置为 x86,错误可能会消失。
The Visual Studio you have is 32-bit, right? And process started out of VS is 64-bit, guess I right?
Set up the project as x86 and the error could disappear.