API16

API16:JDatabaseMySQL/getAffectedRows

From Joomla! Documentation

Revision as of 22:40, 22 March 2010 by Doxiki (talk | contribs) (New page: ===Description=== int The number of affected rows in the previous operation 1.0.5 <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>[[Description:JDatabaseMySQL/g...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Description

int The number of affected rows in the previous operation 1.0.5


[Edit Descripton]

Template:Description:JDatabaseMySQL/getAffectedRows

Syntax

getAffectedRows()


Returns

int The number of affected rows in the previous operation

Defined in

libraries/joomla/database/database/mysql.php

Importing

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

Source Body

public function getAffectedRows()
{
        return mysql_affected_rows($this->_connection);
}

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

Examples

<CodeExamplesForm />