c通過for迴圈多次向資料庫中插入資料

2021-03-04 04:20:05 字數 560 閱讀 6034

1樓:白天

你的問題不甚清晰。需要插入的資料**是在窗體中嗎?sql需要拼接嗎?

給你一段**參考,這段**是將窗體中datagridview中的資料迴圈插入資料庫,迴圈過程中拼接sql,並執行插入:

賦值列名時可以放在迴圈外只賦值一次。

2樓:匿名使用者

listsqls=new list();

int row=0;

using (sqlconnection connection = new sqlconnection(connectionstring))

}}catch(exception ex)

catch

}if(rows>0)//成功

transaction.***mit();}

c#list集合迴圈網資料庫裡面插入資料,如果執行不成功,那麼放到下一次進行插入資料,怎麼寫

3樓:學不安道

插入做一個函式返回結果為boolean,寫一個for迴圈,返回為true是break.

在C中,如何使用sql語句向資料庫中新增資訊

連線字串 data source localhost 服務bai器名du initial catalog 資料庫名 integrated security true sqlconnection con new sqlconnection 連線字串 string ss sql語句 zhi sql ma...

C 中新增資料出錯,c 資料庫寫入錯誤

你的表中有一列是自動編號的吧,這一列是不用插入值的。sqlcommand cmd new sqlcommand insert into enorder menu name,foodsum,foodallprice,clerkid,beizhu,table id,svcdate values conn...

在oracle資料庫中如果查詢資料庫中有哪幾張表

分兩種情況,一種是查詢當前使用者下的表,另一種是查詢當前資料庫下所有的表。查詢當前使用者的表 select table name from user tables 查詢當前資料庫下所有的表 select from user tables 查詢當前使用者的表 select from all table...