ServerJS/RDBMS

< ServerJS
Revision as of 02:11, 5 February 2009 by Kdangoor (talk | contribs) (New page: = Relational Database Interface = Though there are many kinds of persistence engines available, relational databases are the most commonly deployed. Relational databases have a consistent...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Relational Database Interface

Though there are many kinds of persistence engines available, relational databases are the most commonly deployed. Relational databases have a consistent data model and a reasonably consistent set of operations. This has allowed for the creation of a standard interface in many different languages.

If it's possible to interface with other types of databases using the same kind of interface, that is a win. However, the primary goal with this API is to provide access to relational databases.

Prior Art


ORMs

Object relational mappers would use the interface defined here, but are still an area of active exploration and not one to standardize at this time.