[sqlalchemy] how to set up a simple two-phase commit?

2010-02-11 Thread PaulE
All, I want to do a two-phase commit. Published examples are more complex than what I need. To put it another way, I don't want to use the ORM. Here is what I want to do: # This code does what I want - but is missing the two-phase commit. # All session code is commented out because I am

Re: [sqlalchemy] how to set up a simple two-phase commit?

2010-02-11 Thread Michael Bayer
PaulE wrote: All, I want to do a two-phase commit. Published examples are more complex than what I need. To put it another way, I don't want to use the ORM. Here is what I want to do: A similar thread