Re: [python-win32] adodbapi changing autocommit

2016-10-24 Thread Vernon D. Cole
Wait a bit... Did I just hear that there is a difference in operation between starting a connection with autocommit=false and turning autocommit off during a session? If so, I think that's a bug. PEP-249 has no hook for explicitly starting a transaction, so adodbapi needs to always have done Beg

Re: [python-win32] adodbapi changing autocommit

2016-10-24 Thread Tim Roberts
Max Slimmer wrote: > The adodbapi documentation and code implies that with autocommit = > False I should only have to call commit (and possibly rollback) and if > using the connection as a context manager not even those are required. > If autocommit = False is passed on the initial connect the __in

Re: [python-win32] python-win32 Digest, Vol 163, Issue 6

2016-10-24 Thread Max Slimmer
The adodbapi documentation and code implies that with autocommit = False I should only have to call commit (and possibly rollback) and if using the connection as a context manager not even those are required. If autocommit = False is passed on the initial connect the __init__ of the connector handl