API16

JDatabaseMySQL/loadObjectList

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 objects <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>Edit Descripton<now...)
(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 objects

[Edit Descripton]

Template:Description:JDatabaseMySQL/loadObjectList

Syntax[edit]

loadObjectList($key='', $className= 'stdClass')
Parameter Name Default Value Description
$key The field name of a primary key
$className 'stdClass' The name of the class to return (stdClass by default).

Returns[edit]

array If is empty as sequential list of returned records.

Defined in[edit]

libraries/joomla/database/database/mysql.php

Importing[edit]

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

Source Body[edit]

public function loadObjectList($key='', $className = 'stdClass')
{
        if (!($cur = $this->query())) {
                return null;
        }
        $array = array();
        while ($row = mysql_fetch_object($cur, $className)) {
                if ($key) {
                        $array[$row->$key] = $row;
                } else {
                        $array[] = $row;
                }
        }
        mysql_free_result($cur);
        return $array;
}

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

Examples[edit]

<CodeExamplesForm />