You are on page 1of 2

CLOSE Commands

Closes various file types.

CLOSE [ALL | ALTERNATE | DATABASES [ALL] | DEBUGGER | FORMAT | INDEXES


| PROCEDURE | TABLES [ALL]]
Parameters
ALL
Closes all open databases, tables, and indexes in the current and any inactive data sessions and selects work
area 1. CLOSE ALL also closes any files opened with the FCREATE( ) and FOPEN( ) low-level file functions, and
any procedure files opened with SET PROCEDURE. CLOSE ALL does not close a file opened with SET PRINT.
CLOSE ALL also closes the following:

Form Designer

Project Manager

Label Designer

Report Designer

Query Designer

CLOSE ALL does not close these:

Command window

Debug window

Help

Trace window

CLOSE ALTERNATE
Closes an alternate file opened with SET ALTERNATE.
CLOSE DATABASES [ALL]
Closes the current database in the current data session and its tables. If there is no current database, all open
free tables, indexes, and format files in all work areas in the current data session are closed, and work area 1 is
selected.

Note
Using CLOSE DATABASES in the Command window does not close a database if the database was
opened in the Project Manager by expanding its node or when a form is running in its own data session.
Under these circumstances, the database remains open until the Project Manager closes the database or
until the form using the database closes.
The ALL keyword specifies to close the following items in current and all inactive data sessions and that work
area 1 is selected:

All open databases and their tables, except for currently selected databases in other data sessions or
databases and their tables that are open in other data sessions.

All open free tables.

All indexes and format files in all work areas.

CLOSE DEBUGGER
Closes the Visual FoxPro debugger.
CLOSE FORMAT
Closes a format file in the current work area opened with SET FORMAT.
CLOSE INDEXES

Closes all open index files (both single-entry .idx and independent compound .cdx files) in the current work
area. A structural compound index (a .cdx file automatically opened with the table) is not closed.
CLOSE PROCEDURE
Closes a procedure file opened with SET PROCEDURE.
CLOSE TABLES [ALL]
Closes all tables in the currently selected database. CLOSE TABLES closes all free tables in all work areas if a
database isn't open.
Include ALL to close all tables in all databases, and all free tables. All databases remain open.
CLOSE TABLES should not be issued when a transaction is in progress; Visual FoxPro will generate an error
message.

CREATE DATABASE Command


Creates and opens a database.

CREATE DATABASE [DatabaseName | ?]

Example
This example creates a database named people. A table named friends is created and is automatically added to
the database. DISPLAY TABLES is used to display the tables in the database, and DISPLAY DATABASES is used to display
information about the tables in the database.
Copy Code

CREATE DATABASE people


CREATE TABLE friends (FirstName C(20), LastName C(20))
CLEAR
DISPLAY TABLES && Displays tables in the database
DISPLAY DATABASES && Displays table information

DELETE DATABASE Command


Deletes a database from disk.

DELETE DATABASE DatabaseName | ? [DELETETABLES] [RECYCLE]

This example creates a database named people. A table named friends is created and is automatically added to
the database. DISPLAY TABLES is used to display the tables in the database, and DISPLAY DATABASES is used to display
information about the tables in the database.
DELETE DATABASE is used with the DELETETABLES option to remove the database and its
Copy Code

CLOSE ALL
CREATE DATABASE people
CREATE TABLE friends (FirstName C(20), LastName C(20))
CLEAR
DISPLAY TABLES && Displays tables in the database
DISPLAY DATABASES && Displays table information
CLOSE ALL
DELETE DATABASE people DELETETABLES

friends table from disk.

You might also like