Help for this page

Select Code to Download


  1. or download this
      my $SQL = "UPDATE kcrei_batch_job_history SET
                                rows_added = ?,
                                status = 'C',
    ...
                            WHERE
                                master_job_no = ? AND
                                master_job_sub_no = ?";
    
  2. or download this
    my $sth = $dbh->prepare( $SQL )
            or die "Couldn't prepare statement: " . $dbh->errstr;
     
    ...
            outputErrorMessage( "$@" );
            outputErrorMessage( "$sth->{Statement}" );
        }