DataTable::AcceptChanges Method ()
Commits all the changes made to this table since the last time AcceptChanges was called.
Assembly: System.Data (in System.Data.dll)
When AcceptChanges is called, any DataRow object still in edit mode successfully ends its edits. The DataRowState also changes: all Added and Modified rows become Unchanged, and Deleted rows are removed.
The AcceptChanges method is generally called on a DataTable after you attempt to update the DataSet using the DbDataAdapter::Update method.
The following example tests each table for errors. If the table's errors can be reconciled (by passing it to an undefined function), AcceptChanges is called; otherwise, RejectChanges is called.
Available since 1.1