Help for this page

Select Code to Download


  1. or download this
    my $sth = $dbh->prepare("
       UPDATE twsJobs
    ...
        WHERE jobId = ?
    ");
    $dbh->execute($field_name, ..., ...);
    
  2. or download this
    my $q_field = $dbh->quote_identifier($field_name);
    my $sth = $dbh->prepare("
    ...
        WHERE jobId = ?
    ");
    $dbh->execute(..., ...);