in reply to Merging Arrays into a Hash with Substitutions
while ( my @row = $dbQuery->fetchrow_array() ) { @info{@{$headings}} = map { defined ? $_ : "" } @row; } [download]
-enlil