OODBMS
| This article should be merged into Object database. If you disagree with this request, please discuss it on the article's talk page. |
An OODBMS (object-oriented database management system) is a system offering DBMS facilities in an object-oriented programming environment. Data is stored as objects and can be interpreted only using the methods specified by its class. The relationship between similar objects is preserved (inheritance) as are references between objects. Queries can be faster because joins are often not needed (as in a relational database). This is because an object can be retrieved directly without a search, by following its object id.
The same programming language can be used for both data definition and data manipulation. The full power of the database programming language's type system can be used to model data structures and the relationship between the different data items.
Multimedia applications are facilitated because the class methods associated with the data are responsible for its correct interpretation.
OODBMSs typically provide better support for versioning. An object can be viewed as the set of all its versions. Also, object versions can be treated as full fledged objects. OODBMSs also provide systematic support for triggers and constraints which are the basis of active databases.
On the other hand OODBMSs advocates sometimes claim that these databases help to reduce the semantic gap between the application domain (miniworld) and the storage structures [1].
This article was originally based on material from the Free On-line Dictionary of Computing, which is licensed under the GFDL.
Categories: Articles to be merged | Computer stubs