Hi,

A simple cross check - Can I use the bind param like this?

$insert = " INSERT INTO test_db (Col1, Col2, Col3) VALUES (?,?,?) ";
$sth = $dbh->prepare($insert);

loop (4 Million times) {
 $sth->execute($Val1, $Val2, $Val3);
}

$sth->finish;
$dbh->disconnect;


Thanks,
Prem

Reply via email to