Hello everyone,
I have a concrete question about the declarative mapper in my project.
There are three tables: user, services and objects
Class Services(Base):
        mote_id = Column("mote_id", Integer, ForeignKey
("mote_table.mote_id"))


Class Objects(Base):
        mote_id = Column("mote_id", Integer, ForeignKey
("mote_table.mote_id"))


Class User(Base):

r





Yet, in User class i have to which appear to be a error since mapper
with declarative always unique. How can i implement the relation
between user and the two tables though?

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"sqlalchemy" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/sqlalchemy?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to