Delphi Examples: DbiDeleteTable

<< Click to Display Table of Contents >>

Navigation:  »No topics above this level«

Delphi Examples: DbiDeleteTable

Return to chapter overview

Delete a table.

Delphi users should use the TTable.DeleteTable method rather than directly calling DbiDeleteTable. This method is defined as:

 procedure TTable.DeleteTable;

 

The following code deletes the table associated with the TTable object named Table1:

Table1.DeleteTable;