Explain the DataAdapter.Update() and DataSet.AcceptChanges() methods.
5124
21-Aug-2014
Sumit Kesarwani
21-Aug-2014The DataAdapter.Update() method calls any of the DML statements, such as the UPDATE, INSERT, or DELETE statements, as the case may be to update, insert, or delete a row in a DataSet. The DataSet.Acceptchanges() method reflects all the changes made to the row since the last time the AcceptChanges() method was called.