in reply to Re: Array results
in thread Array results

and don't forget good old join:

while ( my @row = $sth->fetchrow_array ) { print FINAL join("\n", @row), "\n"; }

Replies are listed 'Best First'.
Re^3: Array results
by Happy-the-monk (Canon) on Oct 29, 2004 at 08:31 UTC

    print FINAL join("\n", @row), "\n";

    print FINAL join( "\n", @row, "" ); # does the same, looks smart ;)

    Cheerio, Sören

      Away with resource wasting and useless interpolation :-)

       print FINAL join( "\n", @row, '' );