Re: [Sqlalchemy-users] Objects with just some fields

2007-05-08 Thread HD Mail
Mike Orr wrote: > Is it possible to make a mapper class that loads & modifies only some > fields in a table rather than all the fields, yet still autoloads the > fields rather than having hardcoded column types? I've been avoiding > the ORM because frequenty I want to iterate every record without

Re: [Sqlalchemy-users] Objects with just some fields

2007-04-27 Thread Michael Bayer
On Apr 27, 2007, at 2:19 PM, Mike Orr wrote: > Is it possible to make a mapper class that loads & modifies only some > fields in a table rather than all the fields, yet still autoloads the > fields rather than having hardcoded column types? you want to use a "deferred" column : http://www.sqlal

Re: [Sqlalchemy-users] Objects with just some fields

2007-04-27 Thread Kapil Thangavelu
On Fri, 27 Apr 2007 14:19:57 -0400, Mike Orr <[EMAIL PROTECTED]> wrote: > Is it possible to make a mapper class that loads & modifies only some > fields in a table rather than all the fields, yet still autoloads the > fields rather than having hardcoded column types? I've been avoiding > the ORM