Updating many rows in dataset

  • Thread starter Thread starter Scott Tenorman
  • Start date Start date
S

Scott Tenorman

The table I am reading has the potential to contain millions of rows.
Can I run the select command multiple times to update the dataset
without those inserted rows appearing as updated?
 
Hi Scott,

You mean inserted rows that appear as inserted?
You might call DataTable.AcceptChanges() (or DataRow.AcceptChanges()) after
you've done with modifications.
 
Back
Top