top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

What are arc Rowstates?

+1 vote
230 views

How arc Rowstates used in ADO.NET?

posted Aug 18, 2014 by Khusboo

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

+1 vote
 
Best answer

The DataAdapter class uses Rowstates to extract modified, added, or deleted records.

The RowState property is used by ADO.NET to track the changes that have been made to a DataRow, which allows changes made to the data while disconnected to be updated back to the data source. The RowState property indicates whether the row belongs to a table, and if it does, whether it's newly inserted, modified, deleted, or unchanged since it was loaded.

answer Aug 20, 2014 by Sandeep Bedi
...