API17

JDatabaseSQLAzure::fetchObject: Difference between revisions

From Joomla! Documentation

Doxiki2 (talk | contribs)
Updated to r1448:247ba8d88526
 
m preparing for archive only
 
(4 intermediate revisions by the same user not shown)
Line 4: Line 4:
Method to fetch a row from the result set cursor as an object.  
Method to fetch a row from the result set cursor as an object.  


{{Description:JDatabaseSQLAzure::fetchObject}}
 
<span class="editsection" style="font-size:76%;">
 
<nowiki>[</nowiki>[[Description:JDatabaseSQLAzure::fetchObject|Edit Descripton]]<nowiki>]</nowiki>
</span>
<source lang="php">
<source lang="php">
protected function fetchObject (
protected function fetchObject (
Line 37: Line 35:
===See also===
===See also===
* {{JVer|11.1}} '''JDatabaseSQLAzure::fetchObject source code''' on [[jplatform:database/database/sqlazure.php#cl-630|BitBucket]]
* {{JVer|11.1}} '''JDatabaseSQLAzure::fetchObject source code''' on [[jplatform:database/database/sqlazure.php#cl-630|BitBucket]]
* {{JVer|11.1}} Class [[JDatabaseSQLAzure/11.1|JDatabaseSQLAzure]]
* {{JVer|11.1}} Class [[API17:JDatabaseSQLAzure|JDatabaseSQLAzure]]
* {{JVer|11.1}} Subpackage [[Subpackage_Database/11.1|Database]]
* {{JVer|11.1}} Subpackage [[API17:Subpackage_Database|Database]]
* [[JDatabaseSQLAzure::fetchObject|Other versions of JDatabaseSQLAzure::fetchObject]]
* [[API17:JDatabaseSQLAzure::fetchObject|Other versions of JDatabaseSQLAzure::fetchObject]]
{{SeeAlso:JDatabaseSQLAzure::fetchObject}}
 
<span class="editsection" style="font-size:76%;">
 
<nowiki>[</nowiki>[[SeeAlso:JDatabaseSQLAzure::fetchObject|Edit See Also]]<nowiki>]</nowiki>
</span>
===User contributed notes===
===User contributed notes===
<CodeExamplesForm />
=== Code Examples ===
<dpl>
<dpl>
noresultsheader=\n
noresultsheader=\n
category=JDatabaseSQLAzure::fetchObject
category=JDatabaseSQLAzure::fetchObject
category=CodeExample
namespace=CodeExample
category=MethodExample
category=MethodExample
include=*
include=*
Line 55: Line 51:
format= ,,,
format= ,,,
</dpl>
</dpl>
<noinclude>[[Category:JDatabaseSQLAzure]][[Category:JDatabaseSQLAzure::fetchObject]]</noinclude>
<noinclude>[[Category:Platform 11.1]][[Category:Archived pages API17]]</noinclude>

Latest revision as of 02:48, 25 March 2017

Joomla 11.1 JDatabaseSQLAzure::fetchObject

Description

Method to fetch a row from the result set cursor as an object.


protected function fetchObject (
        $cursor=null
        $class= 'stdClass'
)
Parameter Type Default Description
$cursor mixed null The optional result set cursor from which to fetch the row.
$class string 'stdClass' The class name to use for the returned row object.
  • Returns mixed Either the next row from the result set or false if there are no more rows.
  • Defined on line 638 of libraries/joomla/database/database/sqlazure.php
  • Since Joomla 11.1

See also


User contributed notes

Code Examples