aboutsummaryrefslogtreecommitdiff
path: root/api/db.py
diff options
context:
space:
mode:
Diffstat (limited to 'api/db.py')
-rw-r--r--api/db.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/api/db.py b/api/db.py
index f5b2539..b850a89 100644
--- a/api/db.py
+++ b/api/db.py
@@ -1,13 +1,15 @@
-# dit bestand is hier om circular imports te vermijden
import os
import sqlite3
+# open database
db_path = os.path.abspath("database/database.db")
connection = sqlite3.connect(db_path, check_same_thread=False)
#! ^^^ Dit is onveilig en goede multithreading support moet nog geïmplementeerd worden
+# load the sql extension used in social/search
connection.enable_load_extension(True)
connection.load_extension("./database/levenshtein.sqlext")
+# sql cursor
cursor = connection.cursor()