Axione-IPE-Viewer/webapp/ipe_fetcher/sqlite_connector/cursor.py

14 lines
380 B
Python
Raw Normal View History

2022-03-23 22:54:04 +01:00
import sqlite3
def getCursorWithSpatialite(db_path: str = None) -> sqlite3.Cursor:
db = sqlite3.connect(db_path)
cur = db.cursor()
db.enable_load_extension(True)
cur.execute('SELECT load_extension("mod_spatialite")')
return cur
2022-11-16 16:10:30 +01:00
def getBasicCursor(db_path: str = None) -> sqlite3.Cursor:
db = sqlite3.connect(db_path)
cur = db.cursor()
return cur