According to the sqlite3 docs, fetchall() returns a list (empty if no rows meet the search criteria). On occasion, not repeatable, I am getting a return value None. What could None indicate, failed access to the DB? a missing table?
According to the sqlite3 docs , fetchall() returns a list (empty if no rows
Share
From a brief look at the source, it does not seem possible, barring memory corruption, for sqlite3’s cursor’s
fetchallto returnNone. You must be doing something else that results inNone.