On 2017-05-30 16:03, Jon Ribbens wrote:
On 2017-05-30, Joseph L. Casale <jcas...@activenetwerx.com> wrote:
There's no difference I'm aware of in the implementations I've used,
but having a consistent API does allow for constructions such as:
try:
do_stuff(conn)
except:
conn.rollback()
finally:
conn.commit()
So you always commit even after an exception?
Well, as you can see, it rollbacks then commits, so the commit does nothing.
It also swallows any exception from do_stuff.
--
https://mail.python.org/mailman/listinfo/python-list