Name
DataRowState
Synopsis
This enumeration indicates the state of a row (returned by the
DataRow.RowState property).
Added indicates a row inserted into the
DataTable but not yet committed to the data
source. Deleted indicates the row was deleted, but
the change has not been applied to the data source, and
Modified indicates the row has been edited but the
changes have not been committed. Detached
indicates a new row (created with DataTable.NewRow( )) but not yet inserted into the table (with
DataRowCollection.Add( )).
public enum DataRowState { Detached = 0x00000001, Unchanged = 0x00000002, Added = 0x00000004, Deleted = 0x00000008, Modified = 0x00000010 }
Hierarchy
System.Object
→
System.ValueType
→
System.Enum(System.IComparable, System.IFormattable, System.IConvertible)
→
DataRowState
Returned By
DataRow.RowState
Passed To
DataSet.{GetChanges( ), HasChanges( )}, DataTable.GetChanges( )
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Read now
Unlock full access