API16

API16:JDatabaseMySQL/loadNextRow

From Joomla! Documentation

Revision as of 22:40, 22 March 2010 by Doxiki (talk | contribs) (New page: ===Description=== Load the next row returned by the query. <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>[[Description:JDatabaseMySQL/loadNextRow|Edit Descripton...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Description

Load the next row returned by the query.

[Edit Descripton]

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 />