[sqlalchemy] Re: Passive delete problem

2008-09-01 Thread Michael Bayer
passive_deletes doesnt prevent SA from operating upon rows which are currently represented in the Session, only from loading in not-already- loaded rows from the databse in order to ensure they are all detached ro removed. Instead, set viewonly=True on Consevent.vconseventmu. On Sep 1,

[sqlalchemy] Re: Passive delete problem

2008-09-01 Thread Werner F. Bruhin
Michael, Michael Bayer wrote: passive_deletes doesnt prevent SA from operating upon rows which are currently represented in the Session, only from loading in not-already- loaded rows from the databse in order to ensure they are all detached ro removed. Instead, set viewonly=True on