Help for this page

Select Code to Download


  1. or download this
    my $sth_b = $dbh_b->prepare($sql_b, { RaiseError => 1 });
    $sth_b->execute();
    
  2. or download this
    my $dbh_b = DBI->connect(..., { RaiseError => 1 });
    my $sth_b = $dbh_b->prepare($sql_b);
    $sth_b->execute();