in reply to Re^2: DBI $dbh->rollback() NOT rolling back???
in thread DBI $dbh->rollback() NOT rolling back???
Update: I sense a misunderstanding of the relationship between DBI and the underlying database. DBI "knows" when you have the AutoCommit attribute set or not, so it can warn you when you do commits and rollbacks with AutoCommit unset. DBI doesn't "know" which of your MySQL tables are using the MyISAM or InnoDB engines on every SQL statement, so it can't warn you about that (the DBD::mysql library, with a bunch of extra work, might be made to do that, but it's really too much bother).
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: DBI $dbh->rollback() NOT rolling back???
by puterboy (Scribe) on Dec 21, 2010 at 14:32 UTC |