C# 读取dbf文件并将其转换为xml
我想读取一个简单的foxpro dbf 文件并将其转换为xml 文件并将其保存到我的电脑中。 是否可以在不使用任何数据库连接的情况下读取和转换简单文件.DBF?
I want to read a simple foxpro dbf file and convert it into xml file and save it into my pc.
Is it possible to read and convert simple file.DBF with out using any db connection?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,这是可能的。根据此链接在 DBF 表上创建适当的连接 http://www.connectionstrings.com/dbf-foxpro< /a>.稍后您将整个数据放入数据集。您可以将数据集以 XML 格式保存到任何您想要的位置。
Yes, It is possible. Create connection on DBF table as appropriate based on this link http://www.connectionstrings.com/dbf-foxpro. Later you get the entire data onto a Dataset. You can save data set wherever you want to in XML format.
这是代码...
Here is the code...