API16

JDatabaseMySQL/loadNextRow

From Joomla! Documentation

< API16:JDatabaseMySQL
Revision as of 17: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)

The "API16" namespace is an archived namespace. This page contains information for a Joomla! version which is no longer supported. It exists only as a historical reference, it will not be improved and its content may be incomplete and/or contain broken links.

Description[edit]

Load the next row returned by the query.

[Edit Descripton]

Template:Description:JDatabaseMySQL/loadNextRow

Syntax[edit]

loadNextRow()


Returns[edit]

mixed The result of the query as an array, false if there are no more rows, or null on an error.

Defined in[edit]

libraries/joomla/database/database/mysql.php

Importing[edit]

jimport( 'joomla.database.database.mysql' );

Source Body[edit]

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[edit]

<CodeExamplesForm />