Icon Closing Tables

Introduction
Closing tables can be accomplished through the Close method of the TDBISAMTable component, or by setting the Active property to False.

The following example shows how to use the Close method to close a table:

begin
   MyTable.Close;
end;

Information Once a table is closed you cannot perform any operations on the table until the table is opened again. The exception to this would be if you are trying to perform an operation that requires the table to be closed, such as repairing or optimizing a table.
Image