|
<< Click to Display Table of Contents >> Delphi Examples: DbiDeleteTable |
![]() ![]()
|
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;