Help for this page

Select Code to Download


  1. or download this
    use strict;
    use DBI;
    
    ...
    while (my $results = $sth->fetchrow_hashref) {
        push @sites, $results;
    }
    
  2. or download this
    use Win32::ODBC;
    
    my @rows;
    ...
        my %data = $db->DataHash();
        push @rows, {%data};
    }