如何將Excel資料批量匯入SQL資料庫

2021-04-30 17:54:33 字數 891 閱讀 6735

private void button1_click(object sender, eventargs e)

}public void transferdata(string excelfile, string sheetname, string connectionstring)

$]「, sheetname);

mycommand = new oledbdataadapter(strexcel, strconn);

mycommand.fill(ds, sheetname);

//如果目標表不存在則建立

string strsql = string.format(」if object_id(』』) is null create table (」, sheetname);

foreach (system.data.datacolumn c in ds.tables[0].columns)

] varchar(255),」, c.columnname);

}strsql = strsql.trim(』,') + 「)」;

using (system.data.sqlclient.sqlconnection sqlconn = new system.data.sqlclient.sqlconnection(connectionstring))

//用bcp匯入資料

如何將excel資料匯入mongoDB資料庫?

如何將excel資料匯入mongodb資料庫?以pitags.xlsx檔案為例,內容如下 idname tagname status minmax period default value unit description area process 38a03m vapourinlet piserv...

如何將excel資料匯入mongoDB資料庫

匯入步驟如下 步驟一 將pitags.xlsx 另存為 pitags.csv 步驟二 執行 imongoimport命令 mongoimport d jinguan c pitags type csv headerline file pitags.csv 引數說明 d 資料庫名 c collecti...

如何將EXCEL內容匯入mysql

方法很多,不過建議你先看看mysql的開發文件,裡面寫的很詳細的,如果你懶得看,可以看下面的 1.有個軟體php excel parser pro v4.2可以 2.可將excel存成csv格式。然後通過phpmyadmin倒入mysql 3.先導入access中,再弄到mysql中,或者自己寫程式...