Editable and removable datasets #8

Merged
dylan merged 9 commits from feat/editable-datasets into main 2026-03-05 16:55:48 +00:00
Showing only changes of commit a154b25415 - Show all commits

View File

@@ -38,9 +38,13 @@ class PostgresConnector:
raise
def execute_batch(self, query, values):
try:
with self.connection.cursor(cursor_factory=RealDictCursor) as cursor:
execute_batch(cursor, query, values)
self.connection.commit()
except Exception:
self.connection.rollback()
raise
def close(self):
if self.connection: