Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
my $ref; while($ref = $sth->fetchrow_arrayref) { print join (", ", @{$ref}), "\n"; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: treat each result line individually in SELECT statement Perl-Mysql
by hippo (Archbishop) on Oct 02, 2018 at 14:53 UTC | |
|
Re: treat each result line individually in SELECT statement Perl-Mysql
by ForgotPasswordAgain (Vicar) on Oct 02, 2018 at 19:44 UTC | |
|
Re: treat each result line individually in SELECT statement Perl-Mysql
by cavac (Prior) on Oct 03, 2018 at 11:18 UTC |