Help for this page

Select Code to Download


  1. or download this
    while( my $row = $sth->fetchrow_hashref() ) {
       push @data, $row;
    }
    
  2. or download this
    while( my $ref = $sth->fetchrow_hashref() ) {
       my $row = $ref;
       push @data, $row;
    }