How Can I access Berkeley DB with SQL using python?
896424Oct 26 2011 — edited Jan 19 2012I wrote the following python codes
import sqlite3
conn = sqlite3.connect(dbName)
cur = conn.cursor()
cur.execute('select * from tblName')
and then I ran it, and I found that "sqlite3.OperationalError: disk I/O error".
What happened to it?