SqlBulkCopy sbc = new SqlBulkCopy(conn1 ); sbc.DestinationTableName = @Table_Name; conn1.Open(); sbc.WriteToServer(ds.Tables[i]); conn1.Close();
var
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)