Help for this page

Select Code to Download


  1. or download this
    my $dbh= DBI->connect('dbi:...', $user, $pass, { RaiseError => 1, Prin
    +tError => 0 });
    # RaiseError is important so I can leave out all error handling
    ...
    
    $sth->execute( undef, $first, $last );
    $sth->finish;