I tried to findAll() large number of records and got
Quote
Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 196608 bytes) in .../framework/db/ar/CActiveRecord.php on line 1530
I need them all for export to csv file.
Is there a good way to fetch all the data sequentially, part by part?
I can use loop and limit/offset, but first I wish to know if there is any other 'built-in' solution.

Help















