| SQL
DBMS Systems
DBMS is short for DataBase Management System, which serves as the engine behind a database system.
MySQL
PostgreSQL
HSQL DB
Oracle
SQL Server
Sqlite
Object-Relations Mapping
Almost all major database systems today are relational database systems:
data are organized into two-dimensional tables containing multiple records,
with each record composed of multiple properties.
The programming paradigm, however, are leaning towards object-oriented programming.
Object-Relational mapping tools, or OR Mapping tools, are designed to bridge
this gap between the programming paradigm and the database paradigm.
Hibernate
...[more] |
|