sqlalchemy.exc.OperationalError: (sqlite3.OperationalError) no such function: JSON_EXTRACT
[SQL: SELECT event_history_table.timestamp AS event_history_table_timestamp, event_history_table.event AS event_history_table_event
FROM event_history_table
WHERE JSON_QUOTE(JSON_EXTRACT(CAST(event_history_table.event AS JSON), ?)) LIKE ? ORDER BY event_history_table.timestamp DESC
LIMIT ? OFFSET ?]
[parameters: ('$."about"', '%connection%', 3, 0)]
I wanted to use sqlalchemy as my ORM tool core layer is genearating above query but the dbapi pysqlite is giving me no such function: JSON_EXTRACT.