I\'m trying this code:
import sqlite connection = sqlite.connect(\'cache.db\') cur = connection.cursor() cur.execute(\'\'\'create table item (id integer p
In Linux you can do something similar, for example, if your locked file is development.db:
$ fuser development.db This command will show what process is locking the file:
development.db: 5430 Just kill the process...
kill -9 5430 ...And your database will be unlocked.