Help for this page

Select Code to Download


  1. or download this
    +----------+
    | lastname |
    ...
    | Jones    |
    | Smith    |
    +----------+
    
  2. or download this
    my $sth = $dbh->selectrow_array("SELECT lastname FROM dbase");
    
    ...
    #its ok with array
    @data = $sth1;
    print @data;