in reply to Help with fetchall_arrayref

Something like
my @rows = $sth->fetchrow_arrayref; foreach my $row (@rows) { print "@row\n"; }
might work for what you have in mind.
"I ain't for it, I'm again' it. I just haven't finished yet." Abe Simpson

Replies are listed 'Best First'.
Re: Re: Help with codefetchall_arrayref/code
by dustacio (Monk) on May 15, 2001 at 20:51 UTC
    I meant .... my $rows = $sth->fetchrow_arrayref; foreach my $row (@$rows) { print "@$row\n"; }