in reply to More DBI Problems!!!
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.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: More DBI Problems!!!
by chipmunk (Parson) on Apr 24, 2001 at 08:00 UTC |