in reply to Re: odd transaction behavior: dbi mysql
in thread odd transaction behavior: dbi mysql

That was it - AutoCommit.

I'm new to this, so hopefully someone can enlighten me:
I set AutoCommit to 0 - it turns out that AutoCommit must be 1 in order to handle begin_work

Is there any way to enforce all code happen within a begin / ( commit/rollback) bookends? It seems that with AutoCommit 0, there is no way to begin; and with autocommit 1 there is no way to force code to happen without an explicit transaction declaration.
  • Comment on Re^2: odd transaction behavior: dbi mysql