in reply to SQL causing 500 error (was: What's Wrong With This?)
for one liners and$sth->do( SQL STATEMENT HERE );
for statements you want to prepare and execute over and over again.$SQL = " SQL STATEMENT HERE "; $sth->prepare($SQL);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: SQL causing 500 error (was: What's Wrong With This?)
by Anonymous Monk on Oct 07, 2002 at 06:11 UTC |