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())
 

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

Back
Top