Source for file postgresql.php
Documentation is available at postgresql.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
* PostgreSQL database iterator.
* @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()
return pg_num_rows($this->cursor);
* 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.
return pg_fetch_object($this->cursor, null, $this->class);
* Method to free up the memory used for the result set.
pg_free_result($this->cursor);
Documentation generated on Tue, 19 Nov 2013 15:11:03 +0100 by phpDocumentor 1.4.3