However, I think the problem is in
$dbh->selectrow_array($query)
The method selectrow_array is for performing a full prepare, execute and returning the array. The parameter is an sql string, not a query object.
What you probably meant was:
$query->fetchrow_array
Which returns a single row of the prepared and executed query it is call on.
In reply to Re: More DBI Problems!!!
by repson
in thread More DBI Problems!!!
by grax
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |