A
A
Andrey Grigoriev2015-12-29 13:21:57
Database
Andrey Grigoriev, 2015-12-29 13:21:57

Multiuser local DB?

You need to write an application that contains a table with text entries. Approximately 1500 entries per year. Simultaneous connection of about 5-10 users.
I want the application to use its own local database. To use a shared folder, i.e. without installing a separate database server.
What is the best multi-user local DB to use?

Answer the question

In order to leave comments, you need to log in

4 answer(s)
R
Roman Kitaev, 2015-12-29
@deliro

SQLite. Supports several connections (but only one can still write to the database. But that’s okay, clients will survive 1500 inserts a year)

N
Nivka, 2015-12-29
@Nivka

1500 entries per YEAR?
What DB?
Text files.

R
Roman Mirilaczvili, 2015-12-29
@2ord

At first I also thought about SQLite, but after reading about
MySQL/MariaDB is still suitable, since for SQLite only one user has permission to write to the database at one time.
Configuring MySQL to use minimal memory
And solutions with files are likely to be bicycles, since locks must be taken into account.
You cannot install a DBMS on a shared folder - data can be damaged / lost due to the same locks and potential problems with networks.
In total, you need to have a DBMS on a dedicated PC/server when it comes to desktop applications.
If the resources are quite tense, then you can install it on one of the PCs. The main thing is that this PC never turns off and stands with a UPS .

D
DastiX, 2015-12-29
@DastiX

Firebird for sure.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question