Help for this page

Select Code to Download


  1. or download this
    use Text::CSV;
    my $csv = Text::CSV->new;
    
    ...
    while (my $row = $sth->fetchrow_arrayref) {
         $csv->say(\*STDOUT, $row);
    }
    
  2. or download this
    Patch::DBI::WriteCSV->import;
    my @all_artists = $schema->resultset('Artist')->all;
    Patch::DBI::WriteCSV->unimport;