Help for this page

Select Code to Download


  1. or download this
    my $sth=prepare->('call my_sp($some_number);');
    $sth->execute();
    my $foo=$sth->fetchall_arrayref();
    my $bar=$sth->fetchall_arrayref();
    my $baz=$sth->fetchall_arrayref();
    
  2. or download this
    my $sth=prepare->('call my_sp($some_number);');
    $sth->execute();
    ...
    my $bar=$sth->fetchall_arrayref();
    $sth->more_results();
    my $baz=$sth->fetchall_arrayref();