yajra / pdo-via-oci8

PHP PDO_OCI functions via OCI8 extension
Other
88 stars 61 forks source link

[2.x] WIP: Improve fetchAll performance using oci_fetch_all #112

Closed yajra closed 1 year ago

yajra commented 2 years ago

This PR aims to improve fetchAll method by utilizing oci_fetch_all. Current implement causes like an N+1 side effect which calls fetch method multiple times depending on the numbers of rows returned.