Multi delete record
I have array:
for (int i = 0; i < ds100.Tables[0].Rows.Count; i++)
H开发者_如何转开发ow to delete multi record for each value using c#, dot.net?
If you are using sql 2005 then you can use xml to insert multiple records.
See this example. http://www.codeproject.com/KB/database/InsertingCollection.aspx
精彩评论