What is the difference between a file database and a server database?

I know SQL, and I know the basic structure of the database, but I don’t know how the file database works, not the server one.

+5
source share
2 answers

What is the difference between a file database and a server database

First of all, databases are stored in files! So a simplified answer would be unimportant.

But when we talk about file databases , we mean databases that we directly interact with / update (through the SQL abstraction offered by the JDBC driver), but essentially we just read / write the file directly. Example:SQLite

, , ( ), (.. SQL-). , . : MS-SQL Server.

( ), .

, .

+16

- , , , .

, .

.

+1

All Articles