Help for this page

Select Code to Download


  1. or download this
    sub
    InsertMultipleValues
    ...
        my $sth = $dbh->prepare("INSERT INTO $table ($cols) VALUES ($place
    +s)") or die $dbh->errstr;
        $sth->execute(@vals) or die $dbh->errstr;
    }