in reply to
Execute in DBI fails
Execute isn't a dbh method, it's a statement method. Look a little more closely at the
DBI
documentation. This should work:
my $sth = $dbh->prepare($sql); $res = $sth->execute();
[download]
"What should it profit a man, if he should win a flame war, yet lose his cool?"
Comment on
Re: Execute in DBI fails
Download
Code
In Section
Seekers of Perl Wisdom