[Overview][Resource strings][Constants][Types][Classes][Procedures and functions][Index] |
The possible states of a TtiObject descendant in memory
Source position: tiObject.pas line 38
type TPerObjectState = ( |
||
posEmpty, |
|
The object has been created, but not filled with data from the DB |
posPK, |
|
The object has been created, but only it's primary key has been read |
posCreate, |
|
The object has been created and populated with data and must be saved to the DB |
posUpdate, |
|
The object has been changed, the DB must be updated |
posDelete, |
|
The object has been deleted, it must be deleted from the DB |
posDeleted, |
|
The object was marked for deletion, and has been deleted in the database |
posClean, |
|
The object is Clean no DB update necessary |
posLoading |
||
); |
The possible states of a TtiObject descendant in memory.