首页 > 代码库 > c# 通过 OLEDB连接Access,DBF。
c# 通过 OLEDB连接Access,DBF。
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。
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。