Help for this page

Select Code to Download


  1. or download this
    while(my $ref = $sth->fetchrow_hashref() ){
        ## do something with $ref
    }
    
  2. or download this
    while(my %hash = $sth->fetchrow_hash() ){
        ## do something with %hash
    }