You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: book/20-concepts/00-databases.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -81,7 +81,7 @@ Modern databases typically separate data management from data use through distin
81
81
### Common Architectures
82
82
83
83
**Server-Client Architecture** (most common): A database server program manages all data operations, while client programs (your scripts, applications, notebooks) connect to request data or submit changes. The server enforces all rules and access permissions consistently for every client. This is like a library where the librarian (server) manages the books and enforces checkout policies, while patrons (clients) request materials.
84
-
The two most popular open-source relational database systems: MySQL and Postgres implement a server-client architecture.
84
+
The two most popular open-source relational database systems: MySQL and PostgreSQL implement a server-client architecture.
85
85
86
86
**Embedded Databases**: The database engine runs within your application itself—no separate server. This works for single-user applications like mobile apps or desktop software, but doesn't support multiple users accessing shared data simultaneously.
87
87
SQLite is a common embedded database @10.14778/3554821.3554842.
0 commit comments