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

Excel导入数据到SqlServer中提示:定义了过多字段?

程序员文章站 2022-04-06 11:57:29
...

如题 Excel导入数据到SqlServer中提示:定义了过多字段? 源码: // fileName 文件名 //savePath 路径 DataSet ds = null; try { string myString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + savePath + fileName + ";Extended Properties='Excel

如题 Excel导入数据到SqlServer中提示:定义了过多字段?

源码:

// fileName 文件名

//savePath 路径

DataSet ds = null;
try
{
string myString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + savePath + fileName + ";Extended Properties='Excel 8.0;HDR=No;IMEX=1'";
OleDbConnection oconn = new OleDbConnection(myString);
oconn.Open();

ds = new DataSet();
OleDbDataAdapter oda = new OleDbDataAdapter("select * from [Sheet1$]", oconn);
oda.Fill(ds);
oconn.Close();

}
catch (Exception ea)
{
My.ClientScript.Alert(this, "提供的文档错误:" + ea.Message);

}
return ds;

求解 ?