zoukankan      html  css  js  c++  java
  • Excel导入数据库,兼容Excel2003,2007

            public static System.Data.DataSet ExcelConnection(string filepath, string exName, string tableName, out string errmsg)
            {
                errmsg = "";
                string strCon = "";
                if (exName == ".xls")
                    strCon = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + filepath + ";Extended Properties='Excel 8.0;HDR=YES;IMEX=1'";
                if (exName == ".xlsx")
                    strCon = "Provider=Microsoft.ACE.OLEDB.12.0;Data Source=" + filepath + ";Extended Properties=\"Excel 12.0;HDR=YES\"";

                System.Data.OleDb.OleDbConnection ExcelConn = new System.Data.OleDb.OleDbConnection(strCon);
                try
                {
                    ExcelConn.Open();
                    DataTable dt = ExcelConn.GetOleDbSchemaTable(System.Data.OleDb.OleDbSchemaGuid.Tables, null);
                    if (dt == null)
                        return null;
                    string excelSheet = dt.Rows[0]["TABLE_NAME"].ToString();

                    string strCom = string.Format("SELECT * FROM [" + excelSheet + "]");

                    System.Data.OleDb.OleDbDataAdapter myCommand = new System.Data.OleDb.OleDbDataAdapter(strCom, ExcelConn);
                    DataSet ds = new DataSet();
                    myCommand.Fill(ds, tableName);
                    ExcelConn.Close();
                  
                    return ds;
                }
                catch(Exception ex)
                {
                    errmsg = ex.Message;
                    ExcelConn.Close();
                    return null;
                }
            }

  • 相关阅读:
    教你用笔记本破解无线路由器password
    Android项目外接高德地图代码混淆注意事项
    notepad++ 配置笔记
    ORACLE11.2.0 SQLPLUS 报 error while loading shared libraries
    【Lucene4.8教程之三】搜索
    《Swift Programming Language 》——Swift中怎样使用继承(Inheritance)
    CreateProcess的使用方法
    ntoskrnl.exe损坏或丢失的解决方式
    POI读入excel文件到Java中
    稀疏表示
  • 原文地址:https://www.cnblogs.com/fhuafeng/p/2628566.html
Copyright © 2011-2022 走看看