Gets the state of a DataRow object
Namespace: CNClrLib.ADONet.Enums
Delphi
|
type
TDataRowState = CNClrLib.EnumTypes.TDataRowState;
|
|
Name
|
Description
|

|
drsDetached
|
The row has been created but is not part of any DataRowCollection. A DataRow is in this state immediately after it has been created and before it is added to a collection, or if it has been removed from a collection.
|

|
drsUnchanged
|
The row has not changed since AcceptChanges was last called.
|

|
drsAdded
|
The row has been added to a DataRowCollection, and AcceptChanges has not been called.
|

|
drsDeleted
|
The row was deleted using the Delete method of the DataRow.
|

|
drsModified
|
The row has been modified and AcceptChanges has not been called.
|
Top
|