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
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?