in reply to treat each result line individually in SELECT statement Perl-Mysql

my $ref; $sth->fetchrow_arrayref; # discard the first row while($ref = $sth->fetchrow_arrayref) { ...

... or use an OFFSET in your SQL.

  • Comment on Re: treat each result line individually in SELECT statement Perl-Mysql
  • Download Code