Close Tables
This command closes open tables. Big surprise. Except that sometimes it closes free tables and sometimes it doesn't.
Usage |
CLOSE TABLES [ ALL ] |
Example |
OPEN DATA TasTrade USE Customer IN 0 USE Employee IN 0 USE Orders IN 0 * Now one that's not in the database USE FoxUser * Now one from another database USE TestData!Customer SET DATABASE TO TasTrade CLOSE TABLES && Closes all tables from TasTrade. CLOSE TABLES ALL && Closes FoxUser and TestData!Customer. && Both TasTrade and TestData are left open. |
See Also |