in reply to Re: fetchall( )
in thread fetchall( )

I'm new to perl, so can you tell me how to do that? Or give me a few lines of sample code?

Replies are listed 'Best First'.
Re^3: fetchall( )
by albert (Monk) on Apr 22, 2005 at 09:43 UTC
    The Data::Dumper module is a great way to see what your data structure is like. To print the entire array structure:
    use Data::Dumper; my $ref = $sth->fetchall_arrayref(); print Data::Dumper->Dump([$ref], ['*ref']);
    -albert