Help for this page

Select Code to Download


  1. or download this
    $csv->print (*STDOUT, [@{$sth->{NAME_lc}}]);
    
  2. or download this
    my $csv = Text::CSV_XS->new ({ binary => 1, eol => "\r\n" });
    $csv->print (*STDOUT, [@{$_read_sth->{NAME}}]);
    ...
        # print the data fetched
        $csv->print (*STDOUT, $row);  
        }