my $rows = $sth->fetchall_arrayref; print "$_->{'name'} $_->{'age'}, $_->{'height'}" for (@$rows); #### while (my $row = $sth->fetchrow_hashref) { print "$row->{'name'} $row->{'age'}, $row->{'height'}; }