up vote 6 down vote favorite
share [g+] share [fb]

I want to map a Tag entity using declarative method with sqlachemy. A tag can have a parent (another Tag).

I have:

class Tag(Base):
    __tablename__ = 'tag'

    id = Column(Integer, primary_key=True)
    label = Column(String)

    def __init__(self, label, parentTag=None):
        self.label = label

how can add the "parent" relationship?

Thanks

link|improve this question

feedback

2 Answers

up vote 12 down vote accepted

You add a foreign key referencing the parent, and then create a relation that specifies the direction via remote side. This is documented under adjacency list relationships. For declarative you'd do something like this:

class Tag(Base):
    __tablename__ = 'tag'

    id = Column(Integer, primary_key=True)
    label = Column(String)
    parent_id = Column(Integer, ForeignKey('tag.id'))

    parent = relation('Tag', remote_side=[id])

If you want the reverse relation also, add backref="children" to the relation definition.

link|improve this answer
Works like a charm! – Hugo Apr 14 '10 at 14:56
2  
That url moved to sqlalchemy.org/docs/orm/… – Nathan Villaescusa Dec 9 '10 at 21:43
feedback

parent = relation('Tag') — see http://www.sqlalchemy.org/docs/05/reference/ext/declarative.html#configuring-relations.

link|improve this answer
I try this, but give me an error: sqlalchemy.exc.ArgumentError: Could not determine join condition between parent/child tables on relationship Tag.parent. Specify a 'primaryjoin' expression. If this is a many-to-many relationship, 'secondaryjoin' is needed as well. Thanks – Hugo Apr 14 '10 at 14:46
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.