Help for this page

Select Code to Download


  1. or download this
    local $dbh->{AutoCommit} = 0 if !$already_in_a_transaction;
    
  2. or download this
    if (!$already_in_a_transaction) {
        local $dbh->{AutoCommit} = 0;
    }