Other Reasons For Sqlite3.interfaceerror: Error Binding Parameter 0 - Probably Unsupported Type
I'm checking whether a given transactionid exists in my sqlite database with this code. print((transaction.transactionid,)) print(type(transaction.transactionid)) c.execute('SELECT
Solution 1:
I solved it by adding a self.dbconn.commit() after every c.execute call. There's probably a better solution for this.
Post a Comment for "Other Reasons For Sqlite3.interfaceerror: Error Binding Parameter 0 - Probably Unsupported Type"