http://qs321.pair.com?node_id=317755


in reply to using fetchrow_hashref

Try SELECT code,sum(number) AS sum_number FROM $serverTabl_4 GROUP BY code where you've explicitly given the calculated column a name.

I'm pretty sure that DBI doesn't have sexy handling to make up purty column names for the hash-refs. You're going to need to do that yourself or wind up with undef() for keys in your hashes.

updateYeah, merlyn nailed it much clearer than I and diotalevi is right... hashes is magical. :)

--
$you = new YOU;
honk() if $you->love(perl)

Replies are listed 'Best First'.
Re: Re: using fetchrow_hashref
by diotalevi (Canon) on Dec 30, 2003 at 20:00 UTC
    There is no such thing as an undef hash key. Perl treats the undef as an empty, defined string.