bash - sqlite3 database locked on multiple inserts -


I am using a binary script which writes "never" in multiple tables in the same scilit databases.

I am getting database locked errors, I have read, but I am not sure that I should get the error that I am writing in different tables in the same database, anytime the same table Not in The same database.

Was not it wrong to me?

Regards

SQLite uses a file for all tables to complete it Lock the file, not a single table.

As an alternative solution, you may need to repeat the operation several times after a time interval, until it succeeds.


Comments

Popular posts from this blog

c# - SignalR: "Protocol error: Unknown transport." when navigating to hub -

class - Kivy: how to instantiate a dynamic classes in python -

python - mayavi mapping a discrete colorbar on a surface -