Updating many rows in dataset

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?
 
M

Miha Markic

Hi Scott,

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

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top