Java Persistence/What is a database?
From Wikibooks, the open-content textbooks collection
A database is a program that stores data. There are many types of databases, flat-file, hierarchical, relational, object-relational, object-oriented, xml, and others. The original databases were mainly proprietary and non-standardized.
Relational database were the first databases to achieve great success and standardization, relational database are characterize by the SQL (structured query language) standard to query and modify the database, their client/server architecture, and relational table storage structure. Relational databases achieve great success because their standardization allowed many different vendors such as Oracle, IBM, and Sybase to produce interoperable products giving users the flexibility to switch their vendor and avoid vendor lock-in to a proprietary solution. Their client/server architecture allows the client programming language to be decoupled from the server, allowing the database server to support interface APIs into multiple different programming languages and clients.
Although relational database are relatively old technology they still dominate the industry. There have been many attempts to replace the relational model, first with object-oriented databases, then with object-relational databases, and finally with xml database, but none of the new database models achieved much success and relational database remain the overwhelming dominate database model.
The main relational databases used today are, Oracle, MySQL (Sun), PostgreSQL, DB2 (IBM), SQL Server (Microsoft).