Content deleted Content added
m Bot: Migrating 1 interwiki links, now provided by Wikidata on d:q1172354 |
→API level abstraction: examples: OpenDBX and libdbi |
||
Line 3:
== API level abstraction ==
Libraries unify access to databases by providing a single low-level programming interface to the application developer. Their advantages are most often speed and flexibility because they are not tied to a specific query language (subset) and only have to implement a thin layer to reach their goal.
Popular use for database abstraction layers are among [[object-oriented programming]] languages, which are similar to API level abstraction layers. In an object oriented language like C++ or Java, a database can be represented through an [[Object (computer science)|object]], whose methods and members (or the equivalent thereof in other programming languages) represent various functionalities of the database. They also share the same advantages and disadvantages as API level interfaces.
Examples of thin database abstraction layers include [http://www.linuxnetworks.de/doc/index.php/OpenDBX OpenDBX] and [http://libdbi.sourceforge.net/ libdbi].
== Language level abstraction ==
|