Set of update states.
Source position: db.pas line 65
type TUpdateStatusSet = set of ( |
||
usUnmodified, |
|
Record is unmodified. |
usModified, |
|
Record exists in the database but is locally modified. |
usInserted, |
|
Record does not yet exist in the database, but is locally inserted. |
usDeleted |
|
Record exists in the database, but is locally deleted. |
); |
TUpdateStatusSet is a set of TUpdateStatus values.