Help for this page

Select Code to Download


  1. or download this
    $seen =~ s/'/''/g;
    $interpolated = $seen? "'$seen'" : 'NULL';
    $dbh->do("INSERT INTO foo (bar) VALUES ($interpolated)");
    
  2. or download this
    my $sth = $dbh->prepare('INSERT INTO foo (bar) VALUES (?)');
    $sth->execute($seen);
    
  3. or download this
    $sth->execute( map {$_ ? $_ : undef} @seen_values );