I\'m having some serious problems with the PHP Data Object functions. I\'m trying to loop through a sizeable result set (~60k rows, ~1gig) using a buffered query to avoid fe
Or maybe you could try mysql functions instead:
while ($row = mysql_fetch_row($query)) { ... }
Which will definitely be faster, since that foreach statement makes an impression to use fetchAll() instead fetch() each row
fetchAll()
fetch()