I\'m trying this code:
import sqlite connection = sqlite.connect(\'cache.db\') cur = connection.cursor() cur.execute(\'\'\'create table item (id integer p
Set the timeout parameter in your connect call, as in:
connection = sqlite.connect('cache.db', timeout=10)