in reply to Re: Tie::DBI question
in thread Tie::DBI question
See that nice "lc"?# if we get here, we can fetch the names of the fields my %fields = map { lc($_)=>1 } @{$sth->{NAME}};
I suspect that since field names are case insensitive on the DB side, but hashes are not, the author presumed that you'd always use lowercase. So I bet you didn't need to change your database... just your access code.
-- Randal L. Schwartz, Perl hacker
|
|---|