Help for this page

Select Code to Download


  1. or download this
    eval {
      local $dbh->{AutoCommit} = 0;
    };
    $self->{_can_do_transactions} = $@ ? 0 : 1;
    
  2. or download this
    $self->{_can_do_transactions} = eval {
      local $dbh->{AutoCommit} = 0;
      1
    };