[sqlalchemy] Re: mapper >> 2 python property to 1 sql column table

2008-06-02 Thread Sed
Exactly what I was thinking to do. Thanks Sed --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "sqlalchemy" group. To post to this group, send email to sqlalchemy@googlegroups.com To unsubscribe from this group, send

[sqlalchemy] Re: mapper >> 2 python property to 1 sql column table

2008-05-30 Thread Michael Bayer
On May 30, 2008, at 9:27 AM, Sed wrote: > > Sorry for the subject, I wasn't able to find a good one. > > I'd like to have 2 differente attribute of python to be mapped in one > sql column. > > e.g.: > > person_table = Table('person', metadata > ,Column('id', Integer, primary_key=True) > ) > >