DataTable.GetChanges Method (DataRowState)
.NET Framework (current version)
Gets a copy of the DataTable containing all changes made to it since it was last loaded, or since AcceptChanges was called, filtered by DataRowState.
Assembly: System.Data (in System.Data.dll)
Parameters
- rowStates
-
Type:
System.Data.DataRowState
One of the DataRowState values.
Return Value
Type: System.Data.DataTableA filtered copy of the DataTable that can have actions performed on it, and later be merged back in the DataTable using Merge. If no rows of the desired DataRowState are found, the method returns null.
The GetChanges method is used to produce a second DataTable object that contains only the changes introduced into the original. Use the rowStates argument to specify the type of changes the new object should include.
Relationship constraints may cause unchanged parent rows to be included.
private void ProcessDeletes(DataTable table, OleDbDataAdapter adapter) { DataTable changeTable = table.GetChanges(DataRowState.Deleted); // Check the DataTable for errors. if (changeTable.HasErrors) { // Insert code to resolve errors. } // After fixing errors, update the database with the DataAdapter adapter.Update(changeTable); }
.NET Framework
Available since 1.1
Available since 1.1
Show: