Help for this page

Select Code to Download


  1. or download this
    for ( keys %{$self->{SQL}} ) {
      my $name = $_;
    ...
        return \@res;
      };
    }
    
  2. or download this
    my $res = $dbh->selectall_arrayref($sth, {Slice => {}}, @_);
    return $res;
    
  3. or download this
    return $sth->{Database}->selectall_arrayref($sth, {Slice => {}}, @_);