Help for this page

Select Code to Download


  1. or download this
    my %row_copy = %row;
    push @rows, \%row_copy;
    
  2. or download this
    push @rows, { %row };
    
  3. or download this
    while ( $sth->fetchrow_arrayref ) {
    
  4. or download this
    while ( $sth->fetch ) {