$sth = $dbh->prepare( "something" ) || die "Error: " . $dbh->errstr; $sth->execute() while ( my $ref = $sth->fetchrow_hashref() ) { print "$ref->{something}"; } } #### $single_scalar = $sth->something();