JDatabaseMySQL::getAffectedRows: Difference between revisions
From Joomla! Documentation
Bulk upload by Doxiki2 |
m preparing for archive only |
||
| (6 intermediate revisions by 2 users not shown) | |||
| Line 2: | Line 2: | ||
=={{JVer|11.1}} JDatabaseMySQL::getAffectedRows== | =={{JVer|11.1}} JDatabaseMySQL::getAffectedRows== | ||
===Description=== | ===Description=== | ||
Get the number of affected rows for the previous executed SQL statement. | |||
<source lang="php"> | <source lang="php"> | ||
public | public function getAffectedRows () | ||
</source> | </source> | ||
* '''Returns''' integer The number of affected rows. | |||
* '''Defined''' on line 173 of libraries/joomla/database/database/mysql.php | |||
* '''Since''' {{JVer|11.1 }} | |||
libraries/joomla/database/database/mysql.php | |||
===See also=== | ===See also=== | ||
* {{JVer|11.1}} '''JDatabaseMySQL::getAffectedRows source code''' on [[jplatform:database/database/mysql.php#cl-165|BitBucket]] | |||
* {{JVer|11.1}} Class [[API17:JDatabaseMySQL|JDatabaseMySQL]] | |||
* {{JVer|11.1}} Subpackage [[API17:Subpackage_Database|Database]] | |||
* | * [[API17:JDatabaseMySQL::getAffectedRows|Other versions of JDatabaseMySQL::getAffectedRows]] | ||
* [[JDatabaseMySQL::getAffectedRows|Other versions of | |||
===Examples=== | ===User contributed notes=== | ||
=== Code Examples === | |||
<dpl> | <dpl> | ||
noresultsheader=\n | noresultsheader=\n | ||
category=JDatabaseMySQL::getAffectedRows | category=JDatabaseMySQL::getAffectedRows | ||
namespace=CodeExample | |||
category=MethodExample | category=MethodExample | ||
include=* | include=* | ||
namespace=CodeExample | |||
format= ,,, | format= ,,, | ||
</dpl> | </dpl> | ||
<noinclude>[[Category: | <noinclude>[[Category:Platform 11.1]][[Category:Archived pages API17]]</noinclude> | ||
Latest revision as of 02:38, 25 March 2017
JDatabaseMySQL::getAffectedRows
Description
Get the number of affected rows for the previous executed SQL statement.
public function getAffectedRows ()
- Returns integer The number of affected rows.
- Defined on line 173 of libraries/joomla/database/database/mysql.php
- Since

See also
JDatabaseMySQL::getAffectedRows source code on BitBucket
Class JDatabaseMySQL
Subpackage Database- Other versions of JDatabaseMySQL::getAffectedRows
User contributed notes
Code Examples