Help for this page

Select Code to Download


  1. or download this
    my $array_ref = $select->fetchall_arrayref();
    
  2. or download this
    ..$select->fetchrow_array
    
  3. or download this
    my $array_ref = $select->fetchall_arrayref([0]);
    
  4. or download this
    # instead of 
    my $array_ref = $select->fetchall_arrayref();
    # try
    my $array_ref = $select->fetchall_arrayref;
    
  5. or download this
    fetchall_arrayref
      $tbl_ary_ref = $sth->fetchall_arrayref;
      $tbl_ary_ref = $sth->fetchall_arrayref( $slice );
      $tbl_ary_ref = $sth->fetchall_arrayref( $slice, $max_rows  );