(self, query: str)
| 133 | cursor.execute(statement.encode()) |
| 134 | |
| 135 | def query_one(self, query: str) -> dict[Any, Any]: |
| 136 | with self.conn.cursor() as cursor: |
| 137 | cursor.execute(query.encode()) |
| 138 | return cast(dict[Any, Any], cursor.fetchone()) |
| 139 | |
| 140 | def query_all(self, query: str) -> dict[Any, Any]: |
| 141 | with self.conn.cursor() as cursor: |
no test coverage detected