A number of database related additions

This commit is contained in:
2025-10-18 19:00:35 -04:00
parent 16dc75a57d
commit 88338b0d2f
4 changed files with 70 additions and 0 deletions

View File

@@ -21,6 +21,8 @@ class SQLite(Database):
rows = list(cursor)
return (len(rows), rows)
elif query.casefold().startswith("INSERT".casefold()):
return (cursor.lastrowid, None)
else:
return (cursor.rowcount, None)

View File

@@ -0,0 +1,15 @@
from flask import g
from sqlite import SQLite
import json
def get_db():
db = getattr(g, "_database", None)
if db is None:
with open('../../config.json') as config_file:
config_json = json.load(config_file.read())
if str(config_json["database"]["type"]).casefold() == "SQLite".casefold():
db = g._database = SQLite(config_json["database"]["name"])
return db