while ( my @row = $dbQuery->fetchrow_array() ) { foreach (@{$headings}) { # replace nulls with empty strings if ( defined $row[0] ) { $info{$_} = shift @row; } else { $info{$_} = ""; } # if } # foreach } # while