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

python - Strange behavior using PyQt4's 'pyqtSlot' decorator before another decorator -

c# - UnhandledExceptionMode.ThrowException for AppDomain.UnhandledException -

c# - Process.Kill() returns access denied -