Answer the question
In order to leave comments, you need to log in
How to replace sqlite3?
It constantly knocks out the Database is locked error due to many connections, increased the timeout, I immediately close the connection after using the database, but it does not help.
Is there a similar local database (without servers) that can handle a large number of connections?
Answer the question
In order to leave comments, you need to log in
The essence of sqlite is the lack of a server. All logic is in the library.
But that's why access is blocked - because only one application can connect to one file.
The server solves this issue by the fact that the server is the one application that works with the file, and all the rest work through the server.
Therefore, without a server, there should not be architecturally multi-user access to a file.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question