c#操作DBF数据库文件

16 篇文章 0 订阅

刚来一个新的学校,学校里管理数据都是用的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)

[c-sharp]  view plain copy
  1. using System;  
  2. using System.Collections.Generic;  
  3. using System.ComponentModel;  
  4. using System.Data;  
  5. using System.Drawing;  
  6. using System.Text;  
  7. using System.Windows.Forms;  
  8. using System.Data.OleDb;  
  9. using System.Data.Sql;  
  10. using System.IO;  
  11. namespace cs_control_dbf_folder  
  12. {  
  13.     public partial class Form1 : Form  
  14.     {  
  15.         string dbfPath = string.Empty;          
  16.         public Form1()  
  17.         {  
  18.             InitializeComponent();  
  19.         }  
  20.         private void button1_Click(object sender, EventArgs e)  
  21.         {  
  22.             if(string.IsNullOrEmpty(dbfPath))  
  23.             {  
  24.                 MessageBox.Show("还没选择文件夹!");  
  25.                 return;  
  26.             }  
  27.             if (string.IsNullOrEmpty(comboBox1.Text))  
  28.             {  
  29.                 MessageBox.Show("没有选择数据文件");  
  30.                 return;  
  31.             }  
  32.             string connectString = string.Format(  
  33.                 "Provider=Microsoft.Jet.OLEDB.4.0;Data Source={0};Extended Properties=dBASE IV;User ID=Admin;Password=;"  
  34.                 , dbfPath);              
  35.             using (OleDbConnection connection = new OleDbConnection(connectString))  
  36.             {  
  37.                 DataSet ds = new DataSet();  
  38.                 try  
  39.                 {  
  40.                     connection.Open();  
  41.                     OleDbDataAdapter command = new OleDbDataAdapter("select * from "+comboBox1.Text, connection);  
  42.                     command.Fill(ds, "ds");  
  43.                     MessageBox.Show(ds.Tables[0].Rows.Count.ToString());  
  44.                 }  
  45.                 catch(Exception ex)  
  46.                 {  
  47.                     MessageBox.Show(string.Format("error:{0}", ex.Message));  
  48.                 }                 
  49.             }  
  50.         }  
  51.         private void button2_Click(object sender, EventArgs e)  
  52.         {  
  53.             if (folderBrowserDialog1.ShowDialog() == DialogResult.Cancel)  
  54.                 return;  
  55.             dbfPath = folderBrowserDialog1.SelectedPath;  
  56.             DirectoryInfo di = new DirectoryInfo(dbfPath);  
  57.             comboBox1.Items.Clear();  
  58.             foreach (FileInfo fi in di.GetFiles())  
  59.             {  
  60.                 if(fi.Extension.ToLower()==".dbf")  
  61.                     this.comboBox1.Items.Add(fi.Name.Substring(0,fi.Name.LastIndexOf(fi.Extension)));  
  62.             }  
  63.             if (comboBox1.Items.Count == 0)  
  64.             {  
  65.                 MessageBox.Show("此文件夹中没有数据文件,请确认");  
  66.             }  
  67.             else  
  68.             {  
  69.                 comboBox1.SelectedIndex = 0;  
  70.             }  
  71.         }  
  72.     }  
  73. }  
文章来自: http://blog.csdn.net/wanmingtom/article/details/6123584
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值