:: com :: sun :: star :: sdb :: application ::

constants group DatabaseObjectContainer

Constants
TABLES denotes the virtual folder containing all tables of a database, in a context where such a folder is displayed to the user.  
QUERIES denotes the virtual folder containing all queries of a database, in a context where such a folder is displayed to the user.  
FORMS denotes the virtual folder containing all forms of a database document, in a context where such a folder is displayed to the user.  
REPORTS denotes the virtual folder containing all reports of a database database, in a context where such a folder is displayed to the user.  
DATA_SOURCE denotes the data source itself, which effectively is the root container for all other kind of database objects, including other container types.  
CATALOG denotes a catalog in a database which supports catalogs  
SCHEMA denotes a schema in a database which supports catalogs  
FORMS_FOLDER denotes a folder which is used to organize forms in a database document  
REPORTS_FOLDER denotes a folder which is used to organize reports in a database document  
Constants' Details
TABLES
const long TABLES = 1000;
Description
denotes the virtual folder containing all tables of a database, in a context where such a folder is displayed to the user.
QUERIES
const long QUERIES = 1001;
Description
denotes the virtual folder containing all queries of a database, in a context where such a folder is displayed to the user.
FORMS
const long FORMS = 1002;
Description
denotes the virtual folder containing all forms of a database document, in a context where such a folder is displayed to the user.
REPORTS
const long REPORTS = 1003;
Description
denotes the virtual folder containing all reports of a database database, in a context where such a folder is displayed to the user.
DATA_SOURCE
const long DATA_SOURCE = 1004;
Description
denotes the data source itself, which effectively is the root container for all other kind of database objects, including other container types.
CATALOG
const long CATALOG = 1005;
Description
denotes a catalog in a database which supports catalogs
SCHEMA
const long SCHEMA = 1006;
Description
denotes a schema in a database which supports catalogs
FORMS_FOLDER
const long FORMS_FOLDER = 1007;
Description
denotes a folder which is used to organize forms in a database document
REPORTS_FOLDER
const long REPORTS_FOLDER = 1008;
Description
denotes a folder which is used to organize reports in a database document
Top of Page