Help for this page

Select Code to Download


  1. or download this
    my $rows = $sth->fetchall_arrayref;
    print "$_->{'name'} $_->{'age'}, $_->{'height'}" for (@$rows);
    
  2. or download this
    while (my $row = $sth->fetchrow_hashref) {
        print "$row->{'name'} $row->{'age'}, $row->{'height'};
    }