RE: [sqlalchemy] Which columns changing during orm commit?

2010-08-20 Thread King Simon-NFHD78
> -Original Message- > From: sqlalchemy@googlegroups.com > [mailto:sqlalch...@googlegroups.com] On Behalf Of Michael Hipp > Sent: 19 August 2010 23:39 > To: sqlalchemy@googlegroups.com > Subject: Re: [sqlalchemy] Which columns changing during orm commit? > > On

Re: [sqlalchemy] Which columns changing during orm commit?

2010-08-19 Thread Michael Hipp
On 8/19/2010 5:24 AM, Chris Withers wrote: Michael Hipp wrote: SQLAlchemy seems pretty smart about updating only the changed columns in an orm object... If I have an orm object. Something changes one of the columns. Just before I commit() the session, is there a way to tell which columns will b

Re: [sqlalchemy] Which columns changing during orm commit?

2010-08-19 Thread Chris Withers
Michael Hipp wrote: SQLAlchemy seems pretty smart about updating only the changed columns in an orm object... If I have an orm object. Something changes one of the columns. Just before I commit() the session, is there a way to tell which columns will be updated vs those that are unchanged?