Retrieving Original Values From Updated DataRow?

  • Thread starter Thread starter Axel Dahmen
  • Start date Start date
A

Axel Dahmen

Hi,

After my program has updated rows in a DataTable I'd like to retrieve the
original values of some updated rows. Is this possible?

TIA,
Axel Dahmen
 
Axel,

I don't think that is possible if you don't save them first if you are
updating using the original dataset and not only the changes or another copy
of that.

The dataadapter.update has an inbuild acceptchanges. Therefore everything
will be set to unchanged.

I hope this helps,

Cor
 
Back
Top