aboutsummaryrefslogtreecommitdiffstats
path: root/app/discover/fetchers/db/db_access.py
diff options
context:
space:
mode:
Diffstat (limited to 'app/discover/fetchers/db/db_access.py')
-rw-r--r--app/discover/fetchers/db/db_access.py16
1 files changed, 0 insertions, 16 deletions
diff --git a/app/discover/fetchers/db/db_access.py b/app/discover/fetchers/db/db_access.py
index 8d21bdd..0174c4b 100644
--- a/app/discover/fetchers/db/db_access.py
+++ b/app/discover/fetchers/db/db_access.py
@@ -117,19 +117,3 @@ class DbAccess(Fetcher):
}
return jsonify(ret)
- def run_query(self, query, table, field, values):
- try:
- cursor = DbAccess.conn.cursor(dictionary=True)
- cursor.execute(query, [table, field, values])
- except (AttributeError, mysql.connector.errors.OperationalError) as e:
- self.log.error(e)
- self.connect_to_db(True)
- # try again to run the query
- cursor = DbAccess.conn.cursor(dictionary=True)
- cursor.execute(query, [table, field, values])
-
- rows = []
- for row in cursor:
- rows.append(row)
- return rows
-