I\'m trying this code:
import sqlite
connection = sqlite.connect(\'cache.db\')
cur = connection.cursor()
cur.execute(\'\'\'create table item
(id integer p
I had this problem while working with Pycharm and with a database that was originally given to me by another user.
So, this is how I solve it in my case: