Often happens that I debug a python application connecting to sqlite database and during debugging the connection is not closed.
When I debug it next time, the database is locked, so I can't connect to it so I have to edit source code, close connection before the place where exception database is locked occur, comment the source code and continue debugging.
Is it possible to unlock the database faster? For example from command line?
thank you