Re: [sqlalchemy] difference between expunge() and make_transient()

2015-05-27 Thread c.buhtz
On 2015-05-26 13:06 Mike Bayer mike...@zzzcomputing.com wrote: expunge sends a persistent object to the detached state. make_transient converts a persistent object to a transient. These states are described at When I expunge() an object (it became detached) and after that modifying its

Re: [sqlalchemy] difference between expunge() and make_transient()

2015-05-27 Thread Mike Bayer
On 5/27/15 5:00 PM, c.bu...@posteo.jp wrote: On 2015-05-26 13:06 Mike Bayer mike...@zzzcomputing.com wrote: expunge sends a persistent object to the detached state. make_transient converts a persistent object to a transient. These states are described at When I expunge() an object (it became

[sqlalchemy] difference between expunge() and make_transient()

2015-05-26 Thread c.buhtz
Can someone explain me the difference between expunge() and make_transient() please. Of course I read the docs (more than one time) about it. But I am not really sure about the difference. -- You received this message because you are subscribed to the Google Groups sqlalchemy group. To

Re: [sqlalchemy] difference between expunge() and make_transient()

2015-05-26 Thread Mike Bayer
On 5/26/15 11:37 AM, c.bu...@posteo.jp wrote: Can someone explain me the difference between expunge() and make_transient() please. Of course I read the docs (more than one time) about it. But I am not really sure about the difference. expunge sends a persistent object to the detached state.