在合适的sqlite版本中,我们可以通过'PRAGMA foreign_keys = ON'强制执行外键约束。但是,每次进行连接时,用户都无法登录数据库。所以我想知道如何让它在sqlalchemy / alembic的迁移脚本中运行?非常感谢!
答案 0 :(得分:6)
请参阅SA SQLite文档中的Foreign Key Support:
import sqlite3
from sqlalchemy.engine import Engine
from sqlalchemy import event
@event.listens_for(Engine, "connect")
def set_sqlite_pragma(dbapi_connection, connection_record):
if type(dbapi_connection) is sqlite3.Connection: # play well with other DB backends
cursor = dbapi_connection.cursor()
cursor.execute("PRAGMA foreign_keys=ON")
cursor.close()
答案 1 :(得分:0)
SQLite没有登录。
要在脚本中启用外键,只需将PRAGMA foreign_keys = ON
命令添加到该脚本即可。
答案 2 :(得分:0)
在 Alembic 迁移脚本中,您可以使用原始 SQL 来打开外键支持,如下所示:
def upgrade():
from sqlalchemy.orm.session import Session
session = Session(bind=op.get_bind())
session.execute('PRAGMA foreign_keys = ON;')
session.commit()
# Actual migration logic would follow.