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

Something like this?

my $first = 1; while((my $ref = $sth->fetchrow_arrayref)) { if($first) { $first = 0; next; } print Dumper($ref), "\n"; }
"For me, programming in Perl is like my cooking. The result may not always taste nice, but it's quick, painless and it get's food on the table."
  • Comment on Re: treat each result line individually in SELECT statement Perl-Mysql
  • Download Code