15 lines
386 B
Python
15 lines
386 B
Python
import sqlite3
|
|
|
|
|
|
def get_cursor_with_spatialite(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
|
|
|
|
|
|
def get_base_cursor(db_path: str = None) -> sqlite3.Cursor:
|
|
db = sqlite3.connect(db_path)
|
|
cur = db.cursor()
|
|
return cur
|