API16:JDatabaseMySQL/loadObjectList
From Joomla! Documentation
Description
Load a list of database objects
<! removed transcluded page call, red link never existed >
Syntax
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
array If is empty as sequential list of returned records.
Defined in
libraries/joomla/database/database/mysql.php
Importing
jimport( 'joomla.database.database.mysql' );
Source Body
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;
}
<! removed transcluded page call, red link never existed >
Examples
Code Examples