On Wed, Jul 31, 2002 at 03:13:45PM -0500, cp wrote: > > my $hashref = $sth->fetchall_hashref($keyattr); > > # I'm confused. Do I need to call finish here since I'm not looping? > # or does DBI do that automatically on fetchall_hashref?
DBI do that automatically on fetchall_hashref. (Actually the driver does it when any fetch method fetches past the last row of data.) Tim.
