TablePost
Previous  Top  Next

Prototype

TablePost(intTableHandle)

Description

It 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

// It stores the table handle 
UnaTabella:= TableOpen('c:\documents\index','statistics.db');

//It executes some operations

//It sets the current record edit mode
TableEdit(UnaTabella);

//It executes some operations on a record

//It confirms the change
TablePost(UnaTabella);

// It executes other operations

//  It closes the table
TableClose(UnaTabella);