in reply to Re: Re: Dereferencing fetchall_arrayref({})
in thread Dereferencing fetchall_arrayref({})
What about something like this?
my $data; while ($_ = $sth->fetchall_arrayref()) { uc(${$_}{'title'}) if(${$_}{'title'} eq "large"); push @{$data}, $_; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Dereferencing fetchall_arrayref({})
by davido (Cardinal) on Apr 25, 2004 at 21:21 UTC | |
by b10m (Vicar) on Apr 25, 2004 at 22:09 UTC |