DBUSED()
Class
Databases
Purpose
Function to check whether a database is open.
Syntax
DBUSED(<expC>)
See Also
ADATABASES(), ADIR(), ALIAS(), CLOSE DATABASES, DATABASE(), DBF(), DISPLAY SCHEMAS, DISPLAY STATUS, GETENV(), LIST SCHEMAS, LIST STATUS, OPEN DATABASE, SET FILECASE, SET SQL, USE, USED()
Description
The DBUSED() function is used to check whether the database whose name is specified in <expC> is open. If the database is open, DBUSED() returns True (.T.), if not it returns False (.F.).
NOTE: The DBUSED() function operates on databases, not tables.
Databases in Recital are implemented as directories containing files that correspond to the tables and associated files in the database. Operating System file protection can be applied individually to the files for added security. The directories are sub-directories of the Recital data directory. The environment variable / symbol DB_DATADIR points to the current Recital data directory and can be queried using the GETENV() function. Files from other directories can be added to the database using the ADD TABLE command or via the database catalog and SET AUTOCATALOG functionality.
Databases can be opened using the SQL USE command, with SQL set to MYSQL, or using the SQL OPEN DATABASE command.
Example
VFP/SQL> OPEN DATABASE hr EXCLUSIVE VFP/SQL> ? dbused("hr") .T. VFP/SQL> CLOSE DATABASES
Products
Recital Database Server, Recital Mirage Server, Recital Terminal Developer