C#實現Excel匯入sqlite的方法

來源:互聯網
上載者:User

標籤:基於   lte   匯入失敗   匯入資料   表名   apt   round   efault   聯絡   

本文執行個體講述了C#實現Excel匯入sqlite的方法,是非常實用的技巧。分享給大家供大家參考。具體方法如下:

首先需要引用system.date.sqlite

具體實現代碼如下:

system.date.sqlitesystem.date.sqlite.linq//匯入--Excel匯入sqliteprivate void button2_Click(object sender, EventArgs e){  DAL.Sqlite da = new DAL.Sqlite("DataByExcel.db");  if (chk_sfzj.Checked==false)  { //刪除全部資料 if (da.SqlExSQLiteCommand("delete from sqllitebyexcel")) { } else {   MessageBox.Show("刪除原失敗,請聯絡管理員!"); }  }  OpenFileDialog ofg = new OpenFileDialog();  ofg.Filter = "*.xls|*.xls";  if (ofg.ShowDialog() == System.Windows.Forms.DialogResult.OK)  { string sName = ofg.FileName; if (new BLL.Excelcs().OutExcel(sName, da)) {   MessageBox.Show("匯入成功");   //bdData(""); } else {   MessageBox.Show("匯入失敗"); }  }}/// <summary>/// 初始化資料庫/// </summary>/// <param name="strSqlitePath">資料庫檔案路徑</param> SQLiteConnection SQLCon;public Sqlite(string dataName){    SQLCon = new SQLiteConnection(string.Format("Data Source={0}{1}", System.AppDomain.CurrentDomain.BaseDirectory, dataName));} /// <summary>/// 執行sql語句/// </summary>/// <param name="strSql">sql語句</param>/// <returns>是否執行成功</returns>public bool SqlExSQLiteCommand(string strSql){  SqlOpen();  SQLiteCommand cmd = new SQLiteCommand();  cmd.Connection = SQLCon;  cmd.CommandText = strSql;  try  { int i = cmd.ExecuteNonQuery(); return true;  }  catch (Exception ex)  { return false;  }}/// <summary>/// 匯入資料到資料庫/// </summary>/// <param name="outFile">檔案</param>/// <param name="sql">資料庫操作對象</param>/// <returns></returns>public bool OutExcel(string outFile,DAL.Sqlite sql){  DataTable dt = DAL.Excel.TransferData(outFile, "Sheet1").Tables[0];  try  { foreach (DataRow item in dt.Rows) {   string strSql = @"insert into sqllitebyexcel  (No,BUSINESS_NO,BUSINESS_TYPE_NAME,VESSEL_NAME_C,VOYAGE,BILL_NO,CTNW1,CTNW2,    CTNW3,TXDD,XXDD,CTN_NO,CTN_TYPE,NAME1,NAME2,NAME3,IN_DATE,JFJSSJ,JFSC,DYPCD,TXPCSJ,TXPCSC,JCSJ,TXSC,H986JJYCSJ,YFYXSJ,LXSJ,LXSC,CCJFSJ,TXJCSJ,TXCCSJ,DCTXSC,TimeNow,DDTXSC)    values(‘{0}‘,‘{1}‘,‘{2}‘,‘{3}‘,‘{4}‘,‘{5}‘,‘{6}‘,‘{7}‘,‘{8}‘,‘{9}‘,‘{10}‘,‘{11}‘,‘{12}‘,‘{13}‘,‘{14}‘,‘{15}‘,‘{16}‘,‘{17}‘,‘{18}‘,‘{19}‘,‘{20}‘,‘{21}‘,‘{22}‘,‘{23}‘,‘{24}‘,‘{25}‘,‘{26}‘,‘{27}‘,‘{28}‘,‘{29}‘,‘{30}‘,‘{31}‘,‘{32}‘,‘{33}‘)";   string strEnd = string.Format(strSql, item[0], item[1], item[2], item[3], item[4], item[5], item[6], item[7], item[8], item[9], item[10], item[11], item[12], item[13], item[14], item[15], item[16].ToDate(), item[17].ToDate(), item[18], item[19].ToDate(), item[20].ToDate(), item[21], item[22].ToDate(), item[23], item[24].ToDate(), item[25].ToDate(), item[26].ToDate(), item[27], item[28].ToDate(), item[29].ToDate(), item[30].ToDate(), item[31], DateTime.Now.ToDate(), "");   sql.SqlExSQLiteCommand(strEnd); }    return true;  }  catch (Exception ex)  {    // MessBox.Show(""); string aa = ex.Message; return false;  }}public static string ToDate(this object obj){  // if (obj == null || string.IsNullOrEmpty(obj.ToString()))  if(string.IsNullOrEmpty(obj.ToString().Trim()))  { return "null";  }  return ((DateTime)obj).ToString("yyyy-MM-dd HH:mm:ss");}/// <summary>/// 擷取excel表資料/// </summary>/// <param name="excelFile">excel檔案路徑</param>/// <param name="sheetName">excel工作表名</param>/// <returns></returns>public static DataSet TransferData(string excelFile, string sheetName){  DataSet ds = new DataSet();  //擷取全部資料  string strConn = "Provider=Microsoft.Jet.OLEDB.4.0;" + "Data Source=" + excelFile + ";" + "Extended Properties=Excel 8.0;";  OleDbConnection conn = new OleDbConnection(strConn);  try  { conn.Open(); string strExcel = ""; OleDbDataAdapter myCommand = null; strExcel = string.Format("select * from [{0}$]", sheetName); myCommand = new OleDbDataAdapter(strExcel, strConn); myCommand.Fill(ds);  }  catch (Exception ex)  { throw new Exception(ex.Message);  }  finally  { conn.Close();  }  return ds;}

相信本文所述對大家的C#程式設計有一定的借鑒價值。

除聲明外, 跑步客文章均為原創,轉載請以連結形式標明本文地址
  C#實現Excel匯入sqlite的方法

本文地址:  http://www.paobuke.com/develop/c-develop/pbk23485.html






相關內容C#基於Regex實現擷取網頁中所有資訊的網頁抓取類執行個體C#中進程的掛起與恢複深入理解C# DateTime日期格式化C#讀寫config設定檔的方法
C#雙緩衝實現方法(可防止閃屏)C#產生Code39條碼而非條碼字型的方法C#產生Word文檔程式碼範例C#實現自訂FTP操作封裝類執行個體

C#實現Excel匯入sqlite的方法

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.