Is there a way to know which data(row) dataadapter.update changed in the database?
I have a datagridview, changes in the gridview are updated with dataadapter.update at the database. But I have two databases so according to changes made in the datagridview the second table should be recalculated.
So I want to know which data is updated, inserted or deleted.
For example for people(id,name) table
when
1 John
2 Jack
3 Sawyer
is updated to
4 Sayid
2 Jack
3 Sawyer
I want to know that 1(id), John(name) changed.