Help for this page

Select Code to Download


  1. or download this
    # loop through rows
    while ($hashref = $sth->fethrow_hashref()) {
       push @$myarrayref , $hashref;
    }
    
  2. or download this
    # loop through rows
    while ($hashref = $sth->fetchrow_hashref()) {
       push @$myarrayref , { %$hashref };
    }