On 11/2/05, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > More than that. Transaction is one of the big topic on RDBMS. This per > attribute update breaks row level consistency.
Not if you're using transactions. Besides, it's easy to update multiple columns at the same time if that's what you need to do... just call instance.set(attr1='foo', attr2='bar') It's not uncommon to need to update multiple rows (and in different tables, no less) at the same time, so using transactions is key to data consistency. Kevin

