Help for this page

Select Code to Download


  1. or download this
    use DBI
    
    ...
    while (my @row = $sth->fetrow_array) {
        # do something with the fields
        }
    
  2. or download this
    use Text::CSV_XS;
    
    ...
        # do something with @$row
        }
    close $fh;