Thanks, applied.

On Fri, Dec 17, 2004 at 10:30:18AM +0100, Steffen Goeldner wrote:
>  
> -  sub rows { shift->FETCH('drv_rows') }
> +  sub rows { shift->{drv_rows} }

I've added this note:

The rows method for this driver can be implemented like this:

  sub rows { shift->{drv_rows} }

because it knows in advance how many rows it has fetched.
Alternatively you could delete that method and so fallback
to the DBI's own method which does the right thing based
on the number of calls to _set_fbav().

Tim.

Reply via email to