in reply to Re^3: Multiple queries on DBI corresponding to multiple csv files?
in thread Multiple queries on DBI corresponding to multiple csv files?
try the selectall_arrayref method
poj#@id = map{ $_->[0] } $dbh->selectall_array($sql,undef,'no') my $ref = $dbh->selectall_arrayref($sql,undef,'no'); @id = map{ $_->[0] } @$ref;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^5: Multiple queries on DBI corresponding to multiple csv files?
by jtech (Sexton) on Feb 20, 2019 at 15:16 UTC | |
|
Re^5: Multiple queries on DBI corresponding to multiple csv files?
by jtech (Sexton) on Feb 21, 2019 at 10:54 UTC | |
by hippo (Archbishop) on Feb 21, 2019 at 11:18 UTC | |
by jtech (Sexton) on Feb 21, 2019 at 12:38 UTC | |
by poj (Abbot) on Feb 21, 2019 at 13:00 UTC | |
by jtech (Sexton) on Feb 21, 2019 at 12:53 UTC |