API16

JDatabaseMySQL/loadRowList

From Joomla! Documentation

< API16:JDatabaseMySQL
Revision as of 17:40, 22 March 2010 by Doxiki (talk | contribs) (New page: ===Description=== Load a list of database rows (numeric column indexing) <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>[[Description:JDatabaseMySQL/loadRowList|E...)
(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 a list of database rows (numeric column indexing)

[Edit Descripton]

Template:Description:JDatabaseMySQL/loadRowList

Syntax[edit]

loadRowList($key=null)
Parameter Name Default Value Description
$key null The field name of a primary key

Returns[edit]

array If is empty as sequential list of returned records. If is not empty then the returned array is indexed by the value the database key. Returns if the query fails.

Defined in[edit]

libraries/joomla/database/database/mysql.php

Importing[edit]

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

Source Body[edit]

public function loadRowList($key=null)
{
        if (!($cur = $this->query())) {
                return null;
        }
        $array = array();
        while ($row = mysql_fetch_row($cur)) {
                if ($key !== null) {
                        $array[$row[$key]] = $row;
                } else {
                        $array[] = $row;
                }
        }
        mysql_free_result($cur);
        return $array;
}

[Edit See Also] Template:SeeAlso:JDatabaseMySQL/loadRowList

Examples[edit]

<CodeExamplesForm />