Get data in a .dbf file using c#

2019-02-09 04:32发布

How can I get the data in a .dbf file using c#??

What I want to do is to read the data in each row (same column) to further process them.

Thanks.

标签: c# dbf
1条回答
狗以群分
2楼-- · 2019-02-09 04:49

You may create a connection string to dbf file, then using OleDb, you can populate a dataset, something like:

string constr = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=directoryPath;Extended Properties=dBASE IV;User ID=Admin;Password=;";
using (OleDbConnection con = new OleDbConnection(constr))
            {
                var sql = "select * from " + fileName;
                OleDbCommand cmd = new OleDbCommand(sql, con);
                con.Open();
                DataSet ds = new DataSet(); ;
                OleDbDataAdapter da = new OleDbDataAdapter(cmd);
                da.Fill(ds);
            }

Later you can use the ds.Tables[0] for further processing.

You may also check this article Load a DBF into a DataTable

查看更多
登录 后发表回答