(dbapi_connection, connection_record)
| 139 | |
| 140 | |
| 141 | def _set_sqlite_pragma(dbapi_connection, connection_record): |
| 142 | cursor = dbapi_connection.cursor() |
| 143 | cursor.execute("PRAGMA foreign_keys=ON") |
| 144 | cursor.close() |
| 145 | |
| 146 | |
| 147 | def _ensure_schema_indexes_exist( |