Source for file sqlsrv.php
Documentation is available at sqlsrv.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
* SQL server 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 sqlsrv_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 sqlsrv_fetch_object($this->cursor, $this->class);
* Method to free up the memory used for the result set.
sqlsrv_free_stmt($this->cursor);
Documentation generated on Tue, 19 Nov 2013 15:14:16 +0100 by phpDocumentor 1.4.3