API16:JDatabaseMySQLi/loadNextObject
From Joomla! Documentation
This Namespace has been archived - Please Do Not Edit or Create Pages in this namespace. Pages contain information for a Joomla! version which is no longer supported. It exists only as a historical reference, will not be improved and its content may be incomplete.
Contents |
Description
Load the next row returned by the query.
Description:JDatabaseMySQLi/loadNextObject
Syntax
loadNextObject($className= 'stdClass')
| Parameter Name | Default Value | Description |
|---|---|---|
| $className | 'stdClass' | The name of the class to return (stdClass by default). |
Returns
mixed The result of the query as an object, false if there are no more rows, or null on an error.
Defined in
libraries/joomla/database/database/mysqli.php
Importing
jimport( 'joomla.database.database.mysqli' );
Source Body
public function loadNextObject($className = 'stdClass') { static $cur; if (!($cur = $this->query())) { return $this->_errorNum ? null : false; } if ($row = mysqli_fetch_object($cur, $className)) { return $row; } mysql_free_result($cur); $cur = null; return false; }
[Edit See Also] SeeAlso:JDatabaseMySQLi/loadNextObject
Examples
<CodeExamplesForm />
