Describes an action performed on a DataRow.
Namespace: CNClrLib.ADONet.Enums
Delphi
|
type
TDataRowAction = CNClrLib.EnumTypes.TDataRowAction;
|
|
Name
|
Description
|

|
draNothing
|
The row has not changed.
|

|
draDelete
|
The row was deleted from the table.
|

|
draChange
|
The row has changed.
|

|
draRollback
|
The most recent change to the row has been rolled back.
|

|
draCommit
|
The changes to the row have been committed.
|

|
draAdd
|
The row has been added to the table.
|

|
draChangeOriginal
|
The original version of the row has been changed.
|

|
draChangeCurrentAndOriginal
|
The original and the current versions of the row have been changed.
|
Top
|