in reply to Re: sql record sets
in thread sql record sets

fetchrow_arrayref() also fetches a row at a time, it differs from fetchrow() only in the way it stores the return value. fetchrow() returns an array while fetchrow_arrayref() returns an array ref.

Replies are listed 'Best First'.
Re^3: sql record sets
by Flexx (Pilgrim) on Sep 16, 2002 at 17:15 UTC

    fetchall_arrayref() or fetchall_hashref() (quite new) would slurp in all at once.