[sqlalchemy] Re: Data Inheritance

2008-07-21 Thread laureano arcanio
Yeah thats kind of what I'm trying to do, i think it would help me a little. Thanks. --~--~-~--~~~---~--~~ 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

[sqlalchemy] Re: Data Inheritance

2008-07-17 Thread Michael Bayer
On Jul 16, 2008, at 3:29 PM, laureano arcanio wrote: Hi, I'm planning to implement Data inheritance for an os project i'm working on [1]. I have a model with a few tables and relationships between them ( not a complicated stuff ) and i was wandering if there is a way to accomplish

[sqlalchemy] Re: Data Inheritance

2008-07-17 Thread laureano arcanio
Thanks Michael. I might not explain it well, but I've traying to make some kind of data ( rows ) inheritance, this is copying a table value and all it's related childrens, and modify it as necesary with new values in an automated way. ( not inherit Table structures ) It's looks weird i think,

[sqlalchemy] Re: Data Inheritance

2008-07-17 Thread az
On Thursday 17 July 2008 17:06:14 laureano arcanio wrote: Thanks Michael. I might not explain it well, but I've traying to make some kind of data ( rows ) inheritance, this is copying a table value and all it's related childrens, and modify it as necesary with new values in an automated way.