T
T
Tamara Lamova2018-10-29 10:24:41
JavaScript
Tamara Lamova, 2018-10-29 10:24:41

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

3 answer(s)
A
Alex_Zdorgor, 2018-10-29
@tom-lam

SQL Lite

D
Dmitry Kuznetsov, 2018-10-29
@dima9595

In principle, MySQL is enough for you!

S
sim3x, 2018-10-29
@sim3x

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 question

Ask a Question

731 491 924 answers to any question