c#如何将excel文件数据导入sql数据库?有没有完整的代码?谢谢。。。。
c#如何将excel文件数据导入sql数据库?有没有完整的代码?谢谢。。。。
日期:2012-05-04 16:09:39 人气:3
private DataSet CreateDataSource(string filepath)
{
DataSet myds = new DataSet();
string strCon = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + filepath + "; Extended Properties=Excel 8.0;";
OleDbCon