Re: [sqlalchemy] SQLAlchemy 0.7.2 Released

2011-08-02 Thread James Studdart
I'd just like to echo Martin's statement, thank you very much. Just your responses to this list seem like a full time job, let alone the development to SQLAlchemy - which continues to surprise and impress me with it's features and support. James. On 08/02/2011 09:28 AM, Martijn Moeling

Re: [sqlalchemy] hybrid, relationships and inheritance.

2011-07-11 Thread James Studdart
Hi Michael, thanks for your reply. I did get it working with the @property/hybrid_property, but it turns out what I really needed was a custom collection class. At least, that seems to be working in a cleaner fashion. I'm still fumbling around in the dark a little bit, so we'll see how it

[sqlalchemy] hybrid, relationships and inheritance.

2011-07-07 Thread James Studdart
Hi all, I've got a question regarding hybrid properties and how to use them with single table inheritance. I've got a class hierarchy like this (in semi-pseudo code): class MyBase(object): # This has the tablename declared attr, id as primary key, generic table args etc. class