Last active
November 30, 2022 20:31
-
-
Save miku/6522074 to your computer and use it in GitHub Desktop.
Simple sqlite3 context manager for Python.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
import sqlite3 | |
class dbopen(object): | |
""" | |
Simple CM for sqlite3 databases. Commits everything at exit. | |
""" | |
def __init__(self, path): | |
self.path = path | |
def __enter__(self): | |
self.conn = sqlite3.connect(self.path) | |
self.cursor = self.conn.cursor() | |
return self.cursor | |
def __exit__(self, exc_class, exc, traceback): | |
self.conn.commit() | |
self.conn.close() | |
if __name__ == '__main__': | |
with dbopen('./sample.db') as c: | |
c.execute("CREATE TABLE seekmap (id text, offset int, length int)") | |
c.execute("INSERT INTO seekmap VALUES ('a', 0, 2000)") | |
c.execute("INSERT INTO seekmap VALUES ('b', 2000, 3000)") | |
c.execute("SELECT * FROM seekmap") | |
result = c.fetchall() | |
print(result) | |
# [(u'a', 0, 2000), (u'b', 2000, 3000)] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I have made a gist with this updated to have type hinting fwarren / withsqlite.py and to pass linting.
__init__
needsself.conn
andself.cursor
but they are not initalized, only type hinted.In actual practice you can typehint
execute
(),fetchall()
,fetchmany()
andfetchone()
with: