http://www.perlmonks.org?node_id=182098


in reply to DBI specification change

Using fetchrow_array is a bad idea anyway. Much better to use fetchrow_arrayref (aliased as fetch) or the even better bind_columns.

Replies are listed 'Best First'.
Re: Re: DBI specification change
by IlyaM (Parson) on Jul 16, 2002 at 22:59 UTC
      The performance of fetchrow_arrayref is much better than fetchrow_array, and bind_columns is even faster. This is discussed in Tim Bunce's presentation . Basically, the less copying you do the better it performs.