DataSet.HasChanges question - get a collection of columns changed?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello,

I'm wondering if it's possible in .NET 1.1 to enumerate a list of individual
columns that are changed when a datarow has been flagged as changed. After I
update the row back to the database, I also need the ability to write logging
information regarding which specific fields the user has changed.

Thanks in advance for any suggestions.

Andre Ranieri
 
AFAIK, no, you cannot. You would have to go through, one by one, compare the
original and current values to see that.
 
Back
Top