Delphi Examples: DbiEmptyTable

<< Click to Display Table of Contents >>

Navigation:  »No topics above this level«

Delphi Examples: DbiEmptyTable

Return to chapter overview

Delete all records from the given table.

Delphi users should use the TTable.EmptyTable method rather than directly calling dbiEmptyTable. The method TTable.EmptyTable is defined as:

 procedure TTable.EmptyTable;

The following code empties TTable Table1:

Table1.EmptyTable;