This abstract database base class defines generic functionality of a database. In particular, it provides supports for defining the database schema (tables and indexes), and performing transactions.
Modifying data contained in the database is done through rowsets opened on the database, as defined in the DBMS Rowsets API.
The base class is RDbDatabase
. A class
derives from this to define a particular type of database.
The store database implements the abstract database base to provide a client-side (used by a single client thread) database. Databases are stored in permanent file stores.
The store database class is
RDbStoreDatabase
.
Named databases allow simultaneous read/write access by multiple clients through a DBMS server session (created using the DBMS Sharing Databases API). The default data storage method is as a store database.
The named database class is
RDbNamedDatabase
.