.Net 应用程序 - Microsoft Text 驱动程序问题
我正在使用 Microsoft 文本驱动程序从 .net 应用程序中的 CSV 文件读取数据。 问题是,它在我的本地计算机上运行良好,但是当我在我的服务器中运行时,我收到以下错误。
“[Microsoft][ODBC 驱动程序管理器] 未找到数据源名称且未指定默认驱动程序”
请提供帮助。
提前致谢。
I am using Microsoft text driver to read data from a CSV file in my .net application.
The problem is, it is running fine in my local machine, but when i run in my server i am getting the following error.
'[Microsoft][ODBC Driver Manager] Data source name not found and no default driver specified'
Please help.
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的开发工作站很可能是 32 位,而您的服务器是 64 位。据我所知,没有64位文本驱动程序。
最好的选择是将应用程序从
Any CPU
更改为x86
,以便它始终以 32 位运行。It's likely that your development workstation is 32-bit and your server is 64-bit. As far as I know, there is no 64-bit Text Driver.
Your best option is to change your application from
Any CPU
tox86
so that it always runs 32-bit.