Help for this page

Select Code to Download


  1. or download this
        my $dbh = DBI->connect(...);
    
    ...
                $sth->execute() or rollback;
            }
        };
    
  2. or download this
        transaction($dbh) {
            # code
        };