Help for this page

Select Code to Download


  1. or download this
    while (my @rows = $sth->fetchrow_array() ) {
      return join '', map {sprintf $fmt, @$_ } \@headers, \@rows;
    }
    $sth->finish;
    
  2. or download this
    my $result = sprintf $fmt, @headers;
    while ( my @rows = $sth->fetchrow_array() ) {
    ...
    }
    $sth->finish;
    return $result;