Showing posts with label DataRow. Show all posts
Showing posts with label DataRow. Show all posts

Tuesday, June 19, 2012

DataTable RejectChanges


The DataTable’s RejectChanges() method rolls back the changes done to the DataRow.

Now let us see with an example, on how the rowstate property gets affected by calling the RejectChanges() method of the DataTable.

Let us add a new row to a DataTable, and perform various operations on the row to observer the change in the RowState of the row.

// Fill the DataTable with your own logic
// Here we will fill the table by calling the Domain class.
clsEmployee objEmp = new clsEmployee();
DataTable dtEmployee = objEmp.GetEmployeeList();
DataRow drEmp;
//
// Add a new Row and perform data changes
drEmp = dtEmployee.NewRow(); // RowState - Detached
dtEmployee.Rows.Add(drEmp);  // RowState - Added
dtEmployee.RejectChanges();  // RowState - Detached
drEmp["ID"] = 3134;          // RowState - Detached
drEmp.Delete();              // RowState - Detached

drEmp = dtEmployee.NewRow(); // RowState - Detached
dtEmployee.Rows.Add(drEmp);  // RowState - Added
dtEmployee.AcceptChanges();  // RowState - Unchanged
drEmp["ID"] = 3134;          // RowState - Modified
dtEmployee.RejectChanges();  // RowState - Unchanged

drEmp = dtEmployee.NewRow(); // RowState - Detached
dtEmployee.Rows.Add(drEmp);  // RowState - Added
dtEmployee.AcceptChanges();  // RowState - Unchanged
drEmp["ID"] = 3134;          // RowState - Modified
dtEmployee.AcceptChanges();  // RowState - Unchanged
drEmp.Delete();              // RowState - Deleted
dtEmployee.RejectChanges();  // RowState - Unchanged

Calling
RejectChanges, after Adding a new row removes the row from the DataTable
Calling RejectChanges, after Modifying a row rolls back the state of the row to Unchanged
Calling
RejectChanges, after Deleting a row rolls back the state of the row to Unchanged

Notice that, every time you call the DataTable’s RejectChanges() method, the changes are rolled back either to the initial state or to the state when AcceptChanges() was last called on the DataTable.

The following are the changes of RowState of the DataRows in the DataTable, before and after calling the DataTable’s AcceptChanges() method.

RowState before calling RejectChanges()
RowState after calling RejectChanges()
Impact on the Row
Added

Detached
Row is Permanently Removed from the DataTable
Modified

Unchanged
Data modifications to the row are rolled back.
Deleted
Unchanged
Row is retained in the DataTable


The RejectChange() method can also be called on the individual DataRows in the DataTable, calling the DataTable’s RejectChanges() method, will rollback the changes of all the DataRows in the DataTable.

DataTable AcceptChanges


The DataTable’s AcceptChanges() method commits the changed done to the DataRow and the DataTable’s RejectChanges() method rolls back the changes done to the DataRow.

Now let us see with an example, on how the rowstate property gets affected by calling the AcceptChanges() method of the DataTable.

 Let us add a new row to a DataTable, and perform various operations on the row to observer the change in the RowState of the row.

// Fill the DataTable with your own logic
// Here we will fill the table by calling the Domain class.
clsEmployee objEmp = new clsEmployee();
DataTable dtEmployee = objEmp.GetEmployeeList();
DataRow drEmp;
//
// Add a new Row and perform data changes
drEmp = dtEmployee.NewRow();   // RowState - Detached
dtEmployee.Rows.Add(drEmp);    // RowState - Added
dtEmployee.AcceptChanges();    // RowState - Unchanged
drEmp["ID"] = 3134;            // RowState - Modified
dtEmployee.AcceptChanges();    // RowState - Unchanged
drEmp.Delete();                // RowState - Deleted
dtEmployee.AcceptChanges();    // RowState - Detached
gvEmployees.DataSource = dtEmployee;

Notice that, every time you call the DataTable’s AcceptChanges() method, the changes are committed to the DataTable and the RowState is reset to Unchanged.

The following are the changes of RowState of the DataRows in the DataTable, before and after calling the DataTable’s AcceptChanges() method.

RowState before calling AcceptChanges()
RowState after calling AcceptChanges()
Impact on the Row
Added
Unchanged
New row is commited to the DataTable
Modified
Unchanged
Data Changes to the row are committed to the DataTable
Deleted
Detached
Row is Permanently Removed from the DataTable

The AcceptChange() method can also be called on the individual DataRows in the DataTable, calling the DataTable’s AcceptChanges() method, will commit the changes of all the DataRows in the DataTable.

DataRow RowState

The RowState is a very useful property of a DataRow, it gives the current state of the row. The state of the row is affected based on the operations performed on the row, like Add, Modify Delete. The RowState of a row can take one of the following values.
  • Detached
  • Added
  • Unchanged
  • Modified
  • Deleted
Now let us see with an example, on how the rowstate property gets altered based on the operations performed on a DataRow.

 Let us add a new row to a DataTable, and perform various operations on the row to observer the change in the RowState of the row.

// Fill the DataTable with your own logic
// Here we will fill the table by calling the Domain class.

clsEmployee objEmp = new clsEmployee();
DataTable dtEmployee = objEmp.GetEmployeeList();
DataRow drEmp;
//
// Add a new Row and perform data changes
drEmp = dtEmployee.NewRow(); // RowState - Detached
dtEmployee.Rows.Add(drEmp);  // RowState - Added
drEmp["ID"] = 3134;          // RowState - Added
drEmp.Delete();              // RowState - Detached
//
drEmp = dtEmployee.NewRow(); // RowState - Detached
dtEmployee.Rows.Add(drEmp);  // RowState - Added
dtEmployee.AcceptChanges();  // RowState - Unchanged
drEmp["ID"] = 3134;          // RowState - Modified
drEmp.Delete();              // RowState – Deleted

Notice that in the first block, the RowState is not changed, this is because we did not call the DataTable’s AcceptChanges() method, thought we performed an edit operation in the row, the RowState still remained Added.

The DataTable’s AcceptChanges() method commits the changes to the DataTable. In the 2nd code block, we called the DataTable’s AcceptChanges() method after adding the row to the table, hence the RowState gets changed after performing a Modify/Delete operation.

The DataTable’s AcceptChanges() method commits the changed done to the DataRow and the DataTable’s RejectChanges() method rolls back the changes done to the DataRow. To know more about these methods refer the posts 
.


Related Posts


Get Deleted rows in a DataTable / DataGridView in C# Windows Forms