in reply to Re: DBI select ids to @ids
in thread DBI select ids to @ids
Why isn't there a $dbh->selectcol_array? There is a $dbh->selectrow_array. Thats weird.
It should be just:
@ids = $dbh->selectcol_array('select id from items where foo > 42'); +# SHOULD WORK BUT WRONG
Or am I missing something?
-Andrew.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: DBI select ids to @ids
by mifflin (Curate) on Aug 10, 2005 at 06:17 UTC | |
by tomazos (Deacon) on Aug 10, 2005 at 07:25 UTC |