Ron Stephan [mailto:[EMAIL PROTECTED] wrote: > Placeholders? > > Like how?
Here's a quick example:
my $sth = $dbh->prepare(<<"EndOfSQL");
INSERT INTO mytable
(col1, col2)
VALUES
(?, ?)
EndOfSQL
$sth->execute($val1, $val2);
The DBI documentation has more details.
Ronald
