Answer the question
In order to leave comments, you need to log in
Which database to choose for an Electron application?
An application written in Electron (node.js + chromium) needs to store data entered by the user.
In addition to a small number of application settings, you will need to:
1. add and store a series of numbers with the dates they were entered
2. select them (by date, by number, by quantity for a certain period of time)
3. save the result of sampling and calculations in the adjacent
table what database to choose for such a task
so that it does not require a separate installation like MySQL or mongo
and that it is possible to make json or sql queries?
The amount of data is small, no more than 10 MB
Answer the question
In order to leave comments, you need to log in
DBMS - postgresql, mysql, ... it is better not to use it in the application if it does not require access over the network and access by more than one client
. sqlite is suitable for the client application.
If you want to play (torment) with the key-val DBMS - leveldb is not a
mongo-type DBMS, it is better not to use it anywhere
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question