The Record class inherits from Struct and Value which implement many of its methods.
The Record methods are listed below.
void deleteRecord( void ) | Delete the current Record from the database (Note that this is not standard SQL; it is preferable to use the SQL DELETE statement) |
Record* next( void ) | Return a pointer to the next Record in a result set (Note that this method is used by the DataSource class) |
void updateRecord( void ) | Update the current Record in the database (Note that this is not standard SQL; it is preferable to use the SQL UPDATE statement) |