Help for this page

Select Code to Download


  1. or download this
    return $sth->fetchall_arrayref({ });
    
  2. or download this
    my $rows = $sth->fetchall_arrayref({ });
    for my $row (@{$rows}) {
    ...
        }
    }
    return $rows;