将 DBF 数据库与 .Net Winform 应用程序一起使用
由于我正在开发 Windows .Net Windows 表单应用程序,我想知道我们可以在 .Net Windows 表单应用程序中使用 DBF (FoxPro 或 Dbase 数据库文件
)吗?
我想使用 DBF
作为我的 winform .Net 应用程序的后端数据库。
如果您对此有任何想法/解决方案,请告诉我。
提前致谢。
As I am working on windows .Net Windows form application, I want to know that can we use DBF (a FoxPro OR Dbase database file
) in .Net Windows form application ?
I want to use DBF
as the back-end database for my winform .Net application.
Please let me know if you have any ideas/solution on it.
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
根据connectionstrings.com,有多种方法可以连接到 DBF。
只需使用正确的连接字符串,就可以了。
According to connectionstrings.com, there are several ways to connect to a DBF.
Simply use the correct connection string, and you should be fine.
使用 ODBC 类访问 DBF 文件。查看 connectionstrings.com 以找出正确的连接字符串。应该是以下内容:
Use ODBC class to access DBF files. Look at connectionstrings.com to find out the right connection string. It should be the following:
如果您有 OLE DB(首选)或 ODBC 驱动程序,那么是的,绝对可以。
If you have an OLE DB (preferred) or ODBC driver for it, then yes, absolutely.
除此之外,由于 .DBF 文件还与 Visual FoxPro 应用程序相关联,因此您可以轻松地连接 VFP 的 OleDB 提供程序而不是 ODBC。
Additionally to the above, since .DBF files are also associated with Visual FoxPro applications, you can easily hook up with VFP's OleDB provider instead of ODBC.