Help for this page

Select Code to Download


  1. or download this
            my $statement = "SELECT name, number, nw, land, strat, last_up
    +dated, ownerID 
                            FROM someTable                  ORDER BY numbe
    +r ASC";
    ...
            }                            
            my $countries = $sth->rows();
            $sth->finish;
    
  2. or download this
    my $rows = $dbh->selectall_arrayref(".....");
    
  3. or download this
    my $ref = $sth->fetchall_hashref('number');