in reply to Re: SQL causing 500 error (was: What's Wrong With This?)
in thread SQL causing 500 error (was: What's Wrong With This?)
for one liners and$dbh->do( SQL STATEMENT HERE );
for statements you want to prepare and execute over and over again.$SQL = " SQL STATEMENT HERE "; $sth->prepare($SQL); $sth->execute;
|
|---|