Last Sync: 2022-08-05 19:00:04

This commit is contained in:
tactonbishop 2022-08-05 19:00:04 +01:00
parent feb2c5fddb
commit 63d789d248
2 changed files with 2 additions and 1 deletions

View file

@ -26,7 +26,7 @@ To ensure the integrity of a database, each change or transaction must conform t
>
> Databases will have mechanisms for **backup**, **distribution**, and **redundancy**, to ensure data is not lost.
## Database management system
## Database management system: DBMS
A DBMS is software that can retrieve, add, and alter existing data in a database. MySQL, PostgreSQL, MongoDB, MariaDB are all examples of DBMSs. You can work with them via programming languages like PHP or through graphical clients such as PHPMyAdmin, MicrosoftSQL, Adminer etc. There is also SQLite which runs on the client not the server, so useful for learning and local development. SQLite is also useful when you need a database specific to a single device without networked communication, such as on mobile.

View file

@ -1,6 +1,7 @@
---
tags:
- Databases
- relational_databases
---
# Relational database architecture