Select from following answers:- Use the DbAdapter.Update method.

- Use the DataSet.AcceptChanges method.
- Use the DbAdapter.Fill method.
- All Above
Use the DbAdapter.Update method to propagate changes to a DataSet (or DataTable) back to the data source, not to fill a DataSet.
Use the DbAdapter.Fill method to fill a DataSet (or DataTable) with the result set.
The DataSet.AcceptChanges method commits all the changes made to this DataSet since it was loaded or since the last time AcceptChanges was called. It does not access the data source.
Show Correct Answer
Source: MeasureUp.Com | |
Alert Moderator