API17

Difference between revisions of "JDatabase::loadObjectList"

From Joomla! Documentation

m (→‎Examples: moving preparation)
m (→‎See also: moving preparation)
Line 36: Line 36:
 
===See also===
 
===See also===
 
* {{JVer|11.1}} '''JDatabase::loadObjectList source code''' on [[jplatform:database/database.php#cl-699|BitBucket]]
 
* {{JVer|11.1}} '''JDatabase::loadObjectList source code''' on [[jplatform:database/database.php#cl-699|BitBucket]]
* {{JVer|11.1}} Class [[JDatabase/11.1|JDatabase]]
+
* {{JVer|11.1}} Class [[API17:JDatabase|JDatabase]]
* {{JVer|11.1}} Subpackage [[Subpackage_Database/11.1|Database]]
+
* {{JVer|11.1}} Subpackage [[API17:Subpackage_Database|Database]]
* [[JDatabase::loadObjectList|Other versions of JDatabase::loadObjectList]]
+
* [[API17:JDatabase::loadObjectList|Other versions of JDatabase::loadObjectList]]
 
{{SeeAlso:JDatabase::loadObjectList}}
 
{{SeeAlso:JDatabase::loadObjectList}}
 
<span class="editsection" style="font-size:76%;">
 
<span class="editsection" style="font-size:76%;">

Revision as of 20:02, 11 May 2013

The "API17" 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.

Joomla 11.1 JDatabase::loadObjectList[edit]

Description[edit]

Method to get an array of the result set rows from the database query where each row is an object.

Template:Description:JDatabase::loadObjectList [Edit Descripton]

public function loadObjectList (
        $key=''
        $class= 'stdClass'
)
Parameter Type Default Description
$key
$class 'stdClass'
  • Returns
  • Defined on line 707 of libraries/joomla/database/database.php

See also[edit]

Template:SeeAlso:JDatabase::loadObjectList [Edit See Also]

User contributed notes[edit]

Examples[edit]

// Create a new query object.		
$db = &JFactory::getDBO();
$query = $db->getQuery(true);
$query->select('cats.description AS description, cats.title AS titel');
$query->from('#__categories AS cats');
$query->where('cats.id="1"');
$db->setQuery($query);
$Category = $db->loadObjectList();


<CodeExamplesForm />