Compare commits

..

1 Commits

Author SHA1 Message Date
2397ded4b5 add --lazy switch to remind 2020-01-16 15:23:56 -05:00

4
db.py
View File

@ -20,7 +20,9 @@ class FulviaDB:
def connect(self): def connect(self):
"""Return a raw database connection object.""" """Return a raw database connection object."""
return sqlite3.connect(self.filename, timeout=10) return sqlite3.connect(self.filename,
timeout=10,
detect_types=sqlite3.PARSE_DECLTYPES)
def execute(self, *args, **kwargs): def execute(self, *args, **kwargs):
""" """