Tags » python » sqlite-utils
-
TIL: Why isn’t
delete_where()
deleting rows in sqlite-utils?The
delete_where()
function doesn’t auto-commit, so you need to wrap itwith db.conn
or something else to trigger the commit.
delete_where()
deleting rows in sqlite-utils? The delete_where()
function doesn’t auto-commit, so you need to wrap it with db.conn
or something else to trigger the commit.