使用SqlBulkCopy大批量匯入資料

2021-06-06 23:27:54 字數 752 閱讀 3328

實際的開發可能會遇到資料大批量插入資料的問題,若是一條條的迴圈倒數效率非常低下,這個較好的解決方案

protected void button1_click(object sender, eventargs e)

string str = configurationmanager.connectionstrings["connstr"].connectionstring.tostring();

//宣告資料庫連線

sqlconnection conn = new sqlconnection(str);

conn.open();

//宣告sqlbulkcopy ,using釋放非託管資源

using (sqlbulkcopy sqlbc = new sqlbulkcopy(conn))

conn.dispose();

response.write("

");

datetime endtime = datetime.now;

timespan usetime = endtime-begintime;//使用時間

}//響應時事件

void onsqlrowscopied(object sender, sqlrowscopiedeventargs e)

這個是程式的執行結果:

利用SqlBulkCopy快速大批量匯入資料

實際的開發可能會遇到資料大批量插入資料的問題,若是一條條的迴圈倒數效率非常低下,這個較好的解決方案 protected void button1 click object sender,eventargs e string str configurationmanager.connectionstr...

利用SqlBulkCopy快速大批量匯入數

實際的開發可能會遇到資料大批量插入資料的問題,若是一條條的迴圈倒數效率非常低下,這個較好的解決方案12 protected void button1 click object sender,eventargs e 3 2122 string str configurationmanager.conn...

利用SqlBulkCopy快速大批量匯入資料

實際的開發可能會遇到資料大批量插入資料的問題,若是一條條的迴圈倒數效率非常低下,提供這個較好的解決方案 12 protected void button1 click object sender,eventargs e 3 2122 string str configurationmanager.c...