You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When getting a result set that is larger than the PHP limit, the result_object method tries to build the array of the entire result set, causing it to error out. I need to iterate over the results and deal with each bit of data individually instead of a complete array, but can't due to the fact that the cursor is protected.
Additionally, the idea that you iterate over the cursor to build an array, so that I can then iterate over the array seems a bit like you're doubling the run time.
The text was updated successfully, but these errors were encountered:
When getting a result set that is larger than the PHP limit, the result_object method tries to build the array of the entire result set, causing it to error out. I need to iterate over the results and deal with each bit of data individually instead of a complete array, but can't due to the fact that the cursor is protected.
Additionally, the idea that you iterate over the cursor to build an array, so that I can then iterate over the array seems a bit like you're doubling the run time.
The text was updated successfully, but these errors were encountered: