SQLAlchemy - Mapper配置和声明基础

时间:2009-04-27 08:02:23

标签: python sqlalchemy

我正在编写一个多媒体存档数据库后端,我想使用连接表继承。我使用带有SQLAlchemy的Python和声明性扩展。持有媒体记录的表格如下:

_Base = declarative_base()

class Record(_Base):
    __tablename__ = 'records'

    item_id = Column(String(M_ITEM_ID), ForeignKey('items.id'))
    storage_id = Column(String(M_STORAGE_ID), ForeignKey('storages.id'))
    id = Column(String(M_RECORD_ID), primary_key=True)
    uri = Column(String(M_RECORD_URI))
    type = Column(String(M_RECORD_TYPE))
    name = Column(String(M_RECORD_NAME))

type是一个鉴别器。现在我想从A类定义子类Record udioRecord,但我不知道如何使用声明性语法设置多态映射器。我正在寻找以下代码的等效代码(来自SQLAlchemy文档):

mapper(Record, records, polymorphic_on=records.c.type, polymorphic_identity='record')
mapper(AudioRecord, audiorecords, inherits=Record, polymorphic_identity='audio_record')

如何将polymorphic_onpolymorphic_identityinherits关键字传递给声明性扩展程序创建的映射器?

谢谢 扬

1 个答案:

答案 0 :(得分:1)