What is the difference between an embedded database and a regular database such as MySQL or Oracle?

What is the difference between an embedded database and a regular database such as MySQL or Oracle? and when should we use what?

+4
source share
2 answers

Shortly speaking:

A built-in database (for example, MS SQL Compact, SQLite, etc.) is integrated into the application that you are developing or running. This is usually a file that contains a specific data structure for storing data.

A “normal” database, such as MySql or Oracle or MS Sql, needs a server to execute and store data. You must install the application on a locale or a remote server in order to allow the correct connection.

db, .

+5

- , , . "" .

, , , .

0

Source: https://habr.com/ru/post/1547171/


All Articles