API16:JDatabaseMySQL/loadNextRow
From Joomla! Documentation
Description
Load the next row returned by the query.
<! removed transcluded page call, red link never existed >
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;
}
<! removed transcluded page call, red link never existed >
Examples
Code Examples