跨数据库联接SQLAlchemy

跨数据库联接SQLAlchemy,第1张

跨数据库联接SQLAlchemy

您可能需要将

schema
参数传递给
sqlalchemy.schema.Table
。当将声明性基础用于ORM映射时,可以通过
__table_args__
类上的属性提供此额外参数。

class Entity2(base):    __tablename__ = 'entity2' ## I tried combination of <db>.<table> with no success    __table_args__ = {'schema': 'db2'}    entity2_id = Column(Integer, primary_key=True)class Entity1(base):    __tablename__ = 'entity1' ## I tried combination of <db>.<table> with no success    __table_args__ = {'schema': 'db1'}    entity1_id = Column(Integer, primary_key=True)    entity2_id = Column(Integer, ForeignKey(Entity2.entity2_id))    entity2 = relationship('Entity2')


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5655360.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-16
下一篇 2022-12-16

发表评论

登录后才能评论

评论列表(0条)

保存