(self, db_path: str)
| 15 | |
| 16 | class DatabaseConnection: |
| 17 | def __init__(self, db_path: str): |
| 18 | self.db = sqlite3.connect(db_path) |
| 19 | self.db.row_factory = sqlite3.Row |
| 20 | |
| 21 | def getAllRows(db: sqlite3.Connection, workspace: str): |
| 22 | cursor = db.cursor() |