Re: [sqlalchemy] Re: dynamic classes and tables

2011-02-09 Thread Michael Bayer
On Feb 9, 2011, at 1:52 AM, farcat wrote: Thank you, that works. Is there any way to later add or remove attributes, using the declarative system? add yes, just plug them on, http://www.sqlalchemy.org/docs/orm/extensions/declarative.html#defining-attributes, removal not so much since the

[sqlalchemy] Re: dynamic classes and tables

2011-02-08 Thread farcat
Thank you, that works. Is there any way to later add or remove attributes, using the declarative system? Cheers, Lars On Feb 8, 10:46 pm, Michael Bayer mike...@zzzcomputing.com wrote: On Feb 8, 2011, at 3:52 PM, farcat wrote: Hi everyone, I am new to sqlalchemy and figuring out