Purpose
Returns a 2-dimensional array with all the values of the RecordStatus Enum.
Description
Every row in this array has 2 values:
• | The numeric value of the Enum value |
• | A text representation of this value |
This array can be used to validate values, and to print a ,meaningful description of the values during debugging
You can pass this array tro the DaoEnum2Str() function to convert the value of an Enum to a string
Constant | Description |
dbRecordUnmodified | (Default) The record has not been modified or has been updated successfully. |
dbRecordModified | The record has been modified and not updated in the database. |
dbRecordNew | The record has been inserted with the AddNew method, but not yet inserted into the database. |
dbRecordDeleted | The record has been deleted, but not yet deleted in the database. |
dbRecordDBDeleted | The record has been deleted locally and in the database. |
Returns
Array
See Also