Modify check_database to take a connection rather than a cursor

We might not need the cursor at all.
This commit is contained in:
Richard van der Hoff 2020-01-09 17:21:30 +00:00
parent d2906fe666
commit e97d1cf001
4 changed files with 18 additions and 28 deletions

View file

@ -53,7 +53,7 @@ class Sqlite3Engine(object):
"""
return False
def check_database(self, txn):
def check_database(self, db_conn):
pass
def convert_param_style(self, sql):