跟大家分享一下,【摘自】:
读取excel时,某些单元格为空值
原来如此:
当我们用olebb读取excel的时候,如果没有配置imex=1的属性,微软的处理机制是将列转换为同一类型来读取的.例如你在第一行写的数字格式,而第二行写的字符格式,就会出现某些列有值却读不出来.其实问题也很简单,如果知道问题所在的话.属性设置为"imex=1"即可
附以下参考:
string xlsdriver = @"provider=microsoft.jet.oledb.4.0;data source={0};extended properties='excel 8.0;imex=1';";
oledbconnection conn = new oledbconnection(string.format(xlsdriver, filename));"hdr=yes;" indicates that the first row contains columnnames, not data.
"hdr=no;" indicates the opposite."imex=1;" tells the driver to always read "intermixed" (numbers, dates, strings etc) data columns as text. note that this option might affect excel sheet write access negative.加上imex=1这个属性,excel单元格的值就会以文本型读取,避免由于数据类型不一致导致某些值读不出来的找不到可安装的ISAM
在进行将Excel导入到应用程序时,提示“ 找不到可安装的ISAM “的解决方案:
1.连接字符串问
Extended Properties='Excel 8.0;HDR=NO;IMEX=1' |
(1)HDR表示要把第一行作为数据还是作为列名,作为数据用HDR=no,作为列名用HDR=yes;通过Imex=1来把混合型作为文本型读取,避免 null值。
(2)左右两个单引号不能少
2.只需注册 Excel ISAM即可
在“运行”对话框中输入回车即可:Regsvr32 c:\WINDOWS\system32\msexcl40.dll
public DataSet ExcelReader(string excelName)
{ // 拼写连接字符串,打开连接string strConn = "Provider=Microsoft.Jet.OleDb.4.0;" + "data source=" + excelName + ";Extended Properties='Excel 8.0; HDR=YES; IMEX=1'";OleDbConnection objConn = new OleDbConnection(strConn);objConn.Open();// 取得Excel工作簿中所有工作表DataTable schemaTable = objConn.GetOleDbSchemaTable(OleDbSchemaGuid.Tables, null);OleDbDataAdapter sqlada = new OleDbDataAdapter();DataSet ds = new DataSet();// 遍历工作表取得数据并存入Datasetforeach (DataRow dr in schemaTable.Rows){ try{ string strSql = "Select * From [" + dr[2].ToString().Trim() + "]";OleDbCommand objCmd = new OleDbCommand(strSql, objConn);sqlada.SelectCommand = objCmd;sqlada.Fill(ds, dr[2].ToString().Trim());}catch (Exception ex){ }}objConn.Close();return ds;}