in reply to Using CGI.pm params to make a DBI MySQL query
If you do that:
my $sth = $dbh->prepare("INSERT INTO tbl VALUES (?,?,?)"); $sth->execute(@values) or die $dbh->errstr;
you should win twice:
Hope that helps.
alex pleiner <alex@zeitform.de>
zeitform Internet Dienste
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Using CGI.pm params to make a DBI MySQL query
by George_Sherston (Vicar) on Oct 09, 2001 at 20:08 UTC |