D
Daniel Barisch
Is it possible to get the value of a dataColumn, that was stored, before
changes were made (after the last "AcceptChanges")? So that updates with a
Database can be made by hand and not with the standard-update-command (SQL)?
I think of code like
changes = myDataTable.GetChanges(DataRowState.Modified)
for each row in changes
for each col in row
newVal = row.item(col).Value
orgVal = row.item(col).OriginalValue
if not orgVal = newVal then
...
end if
next col
next row
Thanks, D.Barisch
changes were made (after the last "AcceptChanges")? So that updates with a
Database can be made by hand and not with the standard-update-command (SQL)?
I think of code like
changes = myDataTable.GetChanges(DataRowState.Modified)
for each row in changes
for each col in row
newVal = row.item(col).Value
orgVal = row.item(col).OriginalValue
if not orgVal = newVal then
...
end if
next col
next row
Thanks, D.Barisch