欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

C#连接Excel2003和Excel2007以上版本做数据库的连接字符串

程序员文章站 2023-12-04 23:10:04
复制代码 代码如下: string fileext = path.getextension(excelpath); string conn = ""; if (fileex...
复制代码 代码如下:

string fileext = path.getextension(excelpath);
string conn = "";
if (fileext == ".xls")
{
conn = "provider = microsoft.jet.oledb.4.0 ; data source =" + excelpath + ";extended properties='excel 8.0;hdr=yes;imex=1'";
}
else
{
conn = "provider = microsoft.ace.oledb.12.0 ; data source =" + excelpath + ";extended properties='excel 12.0;hdr=yes;imex=1'";
}

03和07、10等版本的引擎不同
03是microsoft.jet.oledb.4.0
07及以上是microsoft.ace.oledb.12.0
并且microsoft.ace.oledb.12.0引擎需要一个文件,下载安装:http://www.microsoft.com/zh-cn/download/details.aspx?id=23734
其实后者可以兼容前者尴尬
参考文章链接:http://blog.csdn.net/limpire/article/details/2599760