diff options
author | Frederick Muriuki Muriithi | 2023-08-02 10:27:10 +0300 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2023-08-02 10:27:10 +0300 |
commit | 6fb63b348f77d4cce29278cf06191a11a3b6d95d (patch) | |
tree | 3f56e9ee4bb6fd4ab8b238f6758a115fd1ffbe17 /gn3 | |
parent | abf648858a1a29d452f0efadf53bf5524dde31db (diff) | |
download | genenetwork3-6fb63b348f77d4cce29278cf06191a11a3b6d95d.tar.gz |
Remove ORM-dependent `insert` function
Remove the object-relation-mapping dependent `insert` function to prevent it
being used in the code down the line.
Diffstat (limited to 'gn3')
-rw-r--r-- | gn3/db/__init__.py | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/gn3/db/__init__.py b/gn3/db/__init__.py index 5676eb5..95b39d4 100644 --- a/gn3/db/__init__.py +++ b/gn3/db/__init__.py @@ -63,22 +63,6 @@ def update(conn: Any, conn.commit() return cursor.rowcount -def insert(conn: Any, - table: str, - data: Dataclass) -> Optional[int]: - """Run an INSERT into a table""" - dict_ = {TABLEMAP[table].get(k): v for k, v in asdict(data).items() - if v is not None and k in TABLEMAP[table]} - sql = f"INSERT INTO {table} (" - sql += ", ".join(f"{k}" for k in dict_.keys()) - sql += ") VALUES (" - sql += ", ".join("%s" for _ in dict_.keys()) - sql += ")" - with conn.cursor() as cursor: - cursor.execute(sql, tuple(dict_.values())) - conn.commit() - return cursor.rowcount - def diff_from_dict(old: Dict, new: Dict) -> Dict: """Construct a new dict with a specific structure that contains the difference |