API16:JDatabaseMySQL/loadNextRow
From Joomla! Documentation
Description
Load the next row returned by the query.
Template:Description:JDatabaseMySQL/loadNextRow
Syntax
loadNextRow()
Returns
mixed The result of the query as an array, false if there are no more rows, or null on an error.
Defined in
libraries/joomla/database/database/mysql.php
Importing
jimport( 'joomla.database.database.mysql' );
Source Body
public function loadNextRow()
{
static $cur;
if (!($cur = $this->query())) {
return $this->_errorNum ? null : false;
}
if ($row = mysql_fetch_row($cur)) {
return $row;
}
mysql_free_result($cur);
$cur = null;
return false;
}
[Edit See Also] Template:SeeAlso:JDatabaseMySQL/loadNextRow
Examples
<CodeExamplesForm />