c#操作DBF数据库文件

刚来一个新的学校,学校里管理数据都是用的DBF。。这让我内牛满面,于是乎,管理学生成绩的任务便落到了我这个搞.NET的童鞋身上了。上网查了下c#操作DBF的文章,不是很多种办法就是讲的不清不楚,我通过http://www.connectionstrings.com/dbf-foxpro上的提示,成功搞定了对DBF的操作,现在来跟大家分享下~

 

字符串:string connectString = string.Format(

                "Provider=Microsoft.Jet.OLEDB.4.0;Data Source={0};Extended Properties=dBASE IV;User ID=Admin;Password=;"

                ,dbfPath);

 

dbfPath:你存放DBF文件的那个文件夹


注意:你只需要改那个dbfPath即可,其他的都不用改。

 

原理:c#操作DBF的时候,会把你刚选择的文件夹当成是一个数据库,而这个另类的“数据库“里的各个DBF文件的名字(不包括扩展名)便是它的表了。

 

代码演示:(form里有两个button,一个combobox)

 

 

using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; using System.Data.OleDb; using System.Data.Sql; using System.IO; namespace cs_control_dbf_folder { public partial class Form1 : Form { string dbfPath = string.Empty; public Form1() { InitializeComponent(); } private void button1_Click(object sender, EventArgs e) { if(string.IsNullOrEmpty(dbfPath)) { MessageBox.Show("还没选择文件夹!"); return; } if (string.IsNullOrEmpty(comboBox1.Text)) { MessageBox.Show("没有选择数据文件"); return; } string connectString = string.Format( "Provider=Microsoft.Jet.OLEDB.4.0;Data Source={0};Extended Properties=dBASE IV;User ID=Admin;Password=;" , dbfPath); using (OleDbConnection connection = new OleDbConnection(connectString)) { DataSet ds = new DataSet(); try { connection.Open(); OleDbDataAdapter command = new OleDbDataAdapter("select * from "+comboBox1.Text, connection); command.Fill(ds, "ds"); MessageBox.Show(ds.Tables[0].Rows.Count.ToString()); } catch(Exception ex) { MessageBox.Show(string.Format("error:{0}", ex.Message)); } } } private void button2_Click(object sender, EventArgs e) { if (folderBrowserDialog1.ShowDialog() == DialogResult.Cancel) return; dbfPath = folderBrowserDialog1.SelectedPath; DirectoryInfo di = new DirectoryInfo(dbfPath); comboBox1.Items.Clear(); foreach (FileInfo fi in di.GetFiles()) { if(fi.Extension.ToLower()==".dbf") this.comboBox1.Items.Add(fi.Name.Substring(0,fi.Name.LastIndexOf(fi.Extension))); } if (comboBox1.Items.Count == 0) { MessageBox.Show("此文件夹中没有数据文件,请确认"); } else { comboBox1.SelectedIndex = 0; } } } }  

 

 

 

你可能感兴趣的:(c#)