How to retrieve the original values of a data table

  • Thread starter Thread starter Nick
  • Start date Start date
N

Nick

Hi,

I believe a dataset keeps a record of the original values
of all rows before AcceptChanges() is called. Then how
can I retrieve the original values? What function call
do I use?

Thanks!
 
You might be able to use the hasversion method of the datarowview

(myTable.Rows(0)("col1", DataRowVersion.Original).ToString())
 
Back
Top