You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If memory serves, sqlite3 has some quirks compared with other common DB2 libs, and doesn't provide context managers for some things (cursors?). The code is supposed to be generic enough now to support other RDBMSes, so reintroducing sqlite3-specific code would break that, and my heart :-).
That said, I think I did try and use with where possible/sensible when I refactored the code a few months ago, so that may just be an oversight on my part.
Instead of
we can do:
which also handles rollbacks. Would you accept a PR to this effect?
The text was updated successfully, but these errors were encountered: