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


in reply to DBI recipes

I try the sample of "Binding a large hash" because perl is ten times slower than php to get data...and I lost 5 seconds!
- 349s in perl with "Binding a large hash" method
while ($sth->fetchrow_hashref)
- 344s in perl with while ( my $hash_ref = $sth->fetchrow_hashref)
- 32s in php with while ($row = db_fetch_array($statement,OCI_ASSOC))

Replies are listed 'Best First'.
Re^2: DBI recipes
by mje (Curate) on Jan 25, 2010 at 09:02 UTC
      This seems to be treasure of DBI recipies --Prasad
Re^2: DBI recipes
by Anonymous Monk on Jan 24, 2010 at 22:34 UTC
    Edit: db_fetch_array oci_fetch_array