1
0
mirror of https://github.com/dg/dibi.git synced 2025-08-09 07:37:08 +02:00

update to 0.5b

This commit is contained in:
David Grudl
2006-06-04 23:09:53 +00:00
parent 0d18c4c366
commit 8e166989d6
12 changed files with 62 additions and 35 deletions

View File

@@ -12,7 +12,7 @@
* @license GNU GENERAL PUBLIC LICENSE
* @package dibi
* @category Database
* @version 0.5alpha (2006-05-26) for PHP5
* @version 0.5b (2006-05-31) for PHP5
*/

View File

@@ -12,7 +12,7 @@
* @license GNU GENERAL PUBLIC LICENSE
* @package dibi
* @category Database
* @version 0.5alpha (2006-05-26) for PHP5
* @version 0.5b (2006-05-31) for PHP5
*/

View File

@@ -12,7 +12,7 @@
* @license GNU GENERAL PUBLIC LICENSE
* @package dibi
* @category Database
* @version 0.5alpha (2006-05-26) for PHP5
* @version 0.5b (2006-05-31) for PHP5
*/

View File

@@ -12,7 +12,7 @@
* @license GNU GENERAL PUBLIC LICENSE
* @package dibi
* @category Database
* @version 0.5alpha (2006-05-26) for PHP5
* @version 0.5b (2006-05-31) for PHP5
*/

View File

@@ -12,7 +12,7 @@
* @license GNU GENERAL PUBLIC LICENSE
* @package dibi
* @category Database
* @version 0.5alpha (2006-05-26) for PHP5
* @version 0.5b (2006-05-31) for PHP5
*/
@@ -350,7 +350,7 @@ class DibiResultIterator implements Iterator
{
$this->result = $result;
$this->offset = (int) $offset;
$this->count = $count === NULL ? PHP_INT_MAX : (int) $count;
$this->count = $count === NULL ? 2147483647 /*PHP_INT_MAX till 5.0.5 */ : (int) $count;
}