16

我对 SQLAlchemy 有疑问。如何将类字典属性添加到我的映射类中,该属性将字符串键映射到字符串值,并将存储在数据库中(与原始映射对象在同一个或另一个表中)。我希望这为我的对象的任意标签添加支持。

我在 SQLAlchemy 文档中找到了以下示例:

from sqlalchemy.orm.collections import column_mapped_collection, attribute_mapped_collection, mapped_collection

mapper(Item, items_table, properties={
# key by column
'notes': relation(Note, collection_class=column_mapped_collection(notes_table.c.keyword)),
# or named attribute
'notes2': relation(Note, collection_class=attribute_mapped_collection('keyword')),
# or any callable
'notes3': relation(Note, collection_class=mapped_collection(lambda entity: entity.a + entity.b))
})

item = Item()
item.notes['color'] = Note('color', 'blue')

但我想要以下行为:

mapper(Item, items_table, properties={
# key by column
'notes': relation(...),
})

item = Item()
item.notes['color'] = 'blue'

在 SQLAlchemy 中可能吗?

谢谢

4

2 回答 2

22

简单的答案是肯定的。

只需使用关联代理:

from sqlalchemy import Column, Integer, String, Table, create_engine
from sqlalchemy import orm, MetaData, Column, ForeignKey
from sqlalchemy.orm import relation, mapper, sessionmaker
from sqlalchemy.orm.collections import column_mapped_collection
from sqlalchemy.ext.associationproxy import association_proxy

创建测试环境:

engine = create_engine('sqlite:///:memory:', echo=True)
meta = MetaData(bind=engine)

定义表:

tb_items = Table('items', meta, 
        Column('id', Integer, primary_key=True), 
        Column('name', String(20)),
        Column('description', String(100)),
    )
tb_notes = Table('notes', meta, 
        Column('id_item', Integer, ForeignKey('items.id'), primary_key=True),
        Column('name', String(20), primary_key=True),
        Column('value', String(100)),
    )
meta.create_all()

类(注意association_proxy类中的):

class Note(object):
    def __init__(self, name, value):
        self.name = name
        self.value = value
class Item(object):
    def __init__(self, name, description=''):
        self.name = name
        self.description = description
    notes = association_proxy('_notesdict', 'value', creator=Note)

映射:

mapper(Note, tb_notes)
mapper(Item, tb_items, properties={
        '_notesdict': relation(Note, 
             collection_class=column_mapped_collection(tb_notes.c.name)),
    })

然后只需测试它:

Session = sessionmaker(bind=engine)
s = Session()

i = Item('ball', 'A round full ball')
i.notes['color'] = 'orange'
i.notes['size'] = 'big'
i.notes['data'] = 'none'

s.add(i)
s.commit()
print i.notes

打印:

{u'color': u'orange', u'data': u'none', u'size': u'big'}

但是,那些在笔记表中吗?

>>> print list(tb_notes.select().execute())
[(1, u'color', u'orange'), (1, u'data', u'none'), (1, u'size', u'big')]

有用!!:)

于 2009-04-24T00:21:28.013 回答
-6

简单回答是不'。

SQLAlchemy 是 SQL 数据库的包装器。

您引用的关系示例将 SQL 表之间的关系转换为类似于 Python 映射的结构,以使执行 SQL SELECT 语句和在另一个表中定位行变得稍微简单一些。

item.notes['color'] = Note('color', 'blue')

是必不可少的,因为它Note是一个包含两列的单独表。你不能把这Note部分放在外面。

您必须定义此其他 SQL 表,并且必须创建映射到该 SQL 表的对象。

于 2009-04-23T10:25:39.830 回答