Help for this page

Select Code to Download


  1. or download this
      $dbh->{PrintError} = 0;
    
  2. or download this
    If you turn "RaiseError" on then you'd normally turn "PrintError" off.
    
  3. or download this
    my $entries =
        eval {
    ...
            eval {$dbh->rollback ()} or $err .= "\n   Rollback processing 
    +failed!";
            die $err;
        };
    
  4. or download this
    my $entries;
    eval {
    ...
    } or do {
        ... rollback and die ...
    };