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

2022-04-05 16:32:42 字數 953 閱讀 9652

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

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;

response.write(""

+endtime.tostring(

"yyyy年mm月dd日:hh:mm:ss:fff

"));

timespan usetime 

=endtime

-begintime;

//使用時間

response.write(""

+usetime.totalseconds.tostring()+"

秒"); }

//響應時事件

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...