in reply to Re: getting the columns names from a mysql query
in thread getting the columns names from a mysql query

Of course DBI allows you to change the default behavior with:
# use uppercase keynames $dbh->{FetchHashKeyName} = 'NAME_uc'; # use lowercase keynames $dbh->{FetchHashKeyName} = 'NAME_lc';

-Blake