- or download this
my $hr = $ST->fetchrow_hashref;
- or download this
print join(", ", @{$ST->{NAME_lc}}), "\n";
- or download this
my @results;
my $hr = $ST->fetchrow_arrayref;
for my $key (@{$ST->{NAME_lc}}) {
push @results, { name=>$key, value=>$hr->{$key} };
}