Quote:
Originally Posted by Cex
I would appreciate some guidance on what changes between 'sqlite3' and 'apsw' besides 'next' instead of 'fetchone', and 'Connection' instead of 'connect'.
|
For your, reference if you ever need to do an sqlite3 to apsw conversion, the two other things I can think of are:
- cursor.commit becomes cursor.execute("commit"). But removed all these as there were no actual transactions.
- If there is only one column in a select statement, the result will be a value rather than an array.