Help for this page

Select Code to Download


  1. or download this
        my $sth = $dbh->prepare ("INSERT INTO x (col1) VALUES(?)");
        foreach my $value (@list_of_evil_stuff)
        {
            $sth->execute($value);
        }
    
  2. or download this
        $dbh->do("INSERT INTO x (col1) VALUES('$evil_value')");