Icon Closing Tables and Views

Closing tables and views can be accomplished through the Close method of the TEDBTable 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 or view is closed you cannot perform any operations on the table or view until the table or view is opened again.
Image