TablePost |
Top Previous Next |
Prototype
TablePost(intTableHandle)
Description
Confirms the change or the insertion of a record inside the table.
Parameters
IntTableHandle: integer value corresponding to the table handle.
Returned value
None.
Notes
None.
Example
// Store the table handle TableOne:= TableOpenBDE('c:\documents\index','statistics.db');
// Execute some operations
// Set the current record edit mode TableEdit(TableOne);
// Execute some operations on a record
// Confirm the change TablePost(TableOne);
// Execute other operations
// Close the table TableClose(TableOne);
|