码迷,mamicode.com
首页 > 数据库 > 详细

c# 通过 OLEDB连接Access,DBF。

时间:2017-04-25 11:47:35      阅读:252      评论:0      收藏:0      [点我收藏+]

标签:access   dbconnect   source   code   down   creat   man   ext   连接   

64位程序需要下载 驱动 AccessDatabaseEngine_X64.exe 

32位程序需要下载 驱动 AccessDatabaseEngine.exe 

官方下载地址:https://www.microsoft.com/zh-cn/download/details.aspx?id=13255

 

要与安装的office版本一直

64位链接

    this.connstring = string.Format("Provider = Microsoft.ACE.OLEDB.12.0 ;Data Source ={0};Extended Properties=dBASE IV;", filePath);
    this.Connection = new OleDbConnection(connstring);

32位链接

    this.connstring = string.Format("Provider = Microsoft.Jet.OLEDB.4.0 ;Data Source ={0};Extended Properties=dBASE IV;", filePath);
    this.Connection = new OleDbConnection(connstring);

基本代码

     this.Connection = new OleDbConnection(connstring);    
     OleDbCommand dc = Connection.CreateCommand();
    Connection.Open();
     dc.CommandText = Sql;
     int count = dc.ExecuteNonQuery();
     Connection.Close();
     dc.Dispose();

 

c# 通过 OLEDB连接Access,DBF。

标签:access   dbconnect   source   code   down   creat   man   ext   连接   

原文地址:http://www.cnblogs.com/AlanYN/p/6760874.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!