Source for file pdo.php
Documentation is available at pdo.php
* @package Joomla.Platform
* @copyright Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE
* @package Joomla.Platform
* Get the number of rows in the result set for the executed SQL given by the cursor.
* @return integer The number of rows in the result set.
* @see Countable::count()
if (!empty($this->cursor) &&
$this->cursor instanceof
PDOStatement)
return $this->cursor->rowCount();
* Method to fetch a row from the result set cursor as an object.
* @return mixed Either the next row from the result set or false if there are no more rows.
if (!empty($this->cursor) &&
$this->cursor instanceof
PDOStatement)
* Method to free up the memory used for the result set.
if (!empty($this->cursor) &&
$this->cursor instanceof
PDOStatement)
Documentation generated on Tue, 19 Nov 2013 15:10:28 +0100 by phpDocumentor 1.4.3