Help for this page

Select Code to Download


  1. or download this
    my $t = Transaction->new($dbh);
    $t->transaction(sub {
    ...
            $sth->execute() or $t->rollback;
        }
    });
    
  2. or download this
    transaction_select $dbh;
    transaction {
    ...
            $sth->execute() or rollback;
        }
    };