Try adding PrintWarn => 1 to the attribute hashref. You'll get a
"rollback ineffective with AutoCommit enabled" warning, issued by DBI
(not by DBD::SQLite).
So I think it is not supposed to DIAF in this case. I close this as
rejected now, but if you have any pointer that tells me it should DIAF,
please reopen this. Thanks.
On Fri Oct 22 06:48:45 2010, RIBASUSHI wrote:
Show quoted text> Sigh. Apologies, I managed to screw up this report as well. The code
in
Show quoted text> question (with the proper AutoCommit) is:
>
> my $dbh = DBI->connect('dbi:SQLite::memory:', undef, undef, {
> RaiseError => 1,
> AutoCommit => 1,
> });
> $dbh->rollback;
>
>
> Still passes just fine