Author: Frederik Holljen Date: 2006-01-25 16:46:54 +0100 (Wed, 25 Jan 2006) New Revision: 2031
Log: - added note about having to fetch the complete resulset when using the iterator with MySQL Modified: packages/PersistentObject/trunk/src/find_iterator.php Modified: packages/PersistentObject/trunk/src/find_iterator.php =================================================================== --- packages/PersistentObject/trunk/src/find_iterator.php 2006-01-25 15:21:38 UTC (rev 2030) +++ packages/PersistentObject/trunk/src/find_iterator.php 2006-01-25 15:46:54 UTC (rev 2031) @@ -15,8 +15,11 @@ * ezcPersistentFindIterator only instanciates one object which * is reused for each iteration. This saves memory and is faster * than fetching and instantiating the result set in one go. - * Note that if you want to save the persistent object * + * Note that if you are using MySQL you need to iterate through the + * complete resultset of the iterator. This is because of a limitation + * in PHP. + * * @package PersistentObject */ class ezcPersistentFindIterator implements Iterator -- svn-components mailing list [email protected] http://lists.ez.no/mailman/listinfo/svn-components
