Re: Unusual behavior with $sth->{NAME} and friends
"David E. Wheeler" <[email protected]>
| Newsgroups | gmane.comp.lang.perl.modules.dbi.sybase.devel |
|---|---|
| Message-ID | <[email protected]> |
On Aug 7, 2008, at 09:29, Greg Sabino Mullane wrote:
> For DBD::Pg, it prints:
>
> $VAR1 = [
> 'Goldfish'
> ];
> $VAR1 = [
> 'goldfish'
> ];
> $VAR1 = undef;
> $VAR1 = [
> 'goldfish'
> ];
> $VAR1 = undef;
DBD::SQLite:
$VAR1 = [
'Goldfish'
];
$VAR1 = [
'goldfish'
];
$VAR1 = undef;
$VAR1 = [
'goldfish'
];
$VAR1 = undef;
DBD::mysql:
$VAR1 = [
'Goldfish'
];
$VAR1 = [
'goldfish'
];
$VAR1 = [
'Goldfish'
];
$VAR1 = [
'goldfish'
];
$VAR1 = [
'GOLDFISH'
];
Best,
David