in reply to Re^2: DBI and fetchall_arrayref
in thread DBI and fetchall_arrayref
#!/usr/bin/perl -- use strict; use warnings; my $result = [ { b => 'small erection' } ]; print $result->[0]->{'b'}."\n"; print $result->[0]{b}."\n"; print "$$result[0]{b}\n"; print "$result->[0]{b}\n"; __END__ small erection small erection small erection small erection
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: DBI and fetchall_arrayref
by Anonymous Monk on May 04, 2009 at 14:09 UTC | |
by Anonymous Monk on May 04, 2009 at 14:11 UTC |