[DB-SIG] MySQLdb: DeprecationWarning: begin() is non-standard and will be removed in 1.3

2006-08-10 Thread Paul DuBois
I'm seeing this from my scripts that use MySQLdb now: ./transaction.py:63: DeprecationWarning: begin() is non-standard and will be removed in 1.3 conn.begin () So, what's the standard thing to do? Just omit the begin() calls? (Given that MySQLdb starts with auto-commit disabled, presumably th

Re: [DB-SIG] MySQLdb: DeprecationWarning: begin() is non-standard and will be removed in 1.3

2006-08-10 Thread Chris Cogdon
On Aug 10, 2006, at 4:48 PM, Paul DuBois wrote: > I'm seeing this from my scripts that use MySQLdb now: > > ./transaction.py:63: DeprecationWarning: begin() is non-standard > and will be > removed in 1.3 > conn.begin () > > So, what's the standard thing to do? Just omit the begin() calls?