Re: [Sqlalchemy-users] mapper.options - attribute error

2006-06-27 Thread Brad Clements
On 26 Jun 2006 at 22:10, Michael Bayer wrote: > noload() is used only for multi-table relations(), to indicate that a > secondary relation should not be eager or lazy loaded. Oh. Yeah, I thought noload would work like defer. The docs aren't clear that the load options (eager, lazy, no) are on

Re: [Sqlalchemy-users] mapper.options - attribute error

2006-06-26 Thread Michael Bayer
noload() is used only for multi-table relations(), to indicate that a secondary relation should not be eager or lazy loaded. what youre looking for is almost like "deferred column loading" (http://www.sqlalchemy.org/docs/ adv_datamapping.myt#advdatamapping_properties_deferred) but i guess

[Sqlalchemy-users] mapper.options - attribute error

2006-06-26 Thread Brad Clements
SVN revision 1666 I am looking at "More on Mapper Options" on http://sqlalchemy.org/docs/adv_datamapping.myt I have a generic wsgi middleware that takes a table name and returns data from that table. For one table, I want to hide one field. That is, for table named 'coordinator' I want to