You are here

protected function OAuthStoreMySQL::query_affected_rows in Lingotek Translation 7.7

Same name and namespace in other branches
  1. 7.2 lib/oauth-php/library/store/OAuthStoreMySQL.php \OAuthStoreMySQL::query_affected_rows()
  2. 7.3 lib/oauth-php/library/store/OAuthStoreMySQL.php \OAuthStoreMySQL::query_affected_rows()
  3. 7.4 lib/oauth-php/library/store/OAuthStoreMySQL.php \OAuthStoreMySQL::query_affected_rows()
  4. 7.5 lib/oauth-php/library/store/OAuthStoreMySQL.php \OAuthStoreMySQL::query_affected_rows()
  5. 7.6 lib/oauth-php/library/store/OAuthStoreMySQL.php \OAuthStoreMySQL::query_affected_rows()

* Return the number of rows affected in the last query

Overrides OAuthStoreSQL::query_affected_rows

2 methods override OAuthStoreMySQL::query_affected_rows()
OAuthStoreAnymeta::query_affected_rows in lib/oauth-php/library/store/OAuthStoreAnyMeta.php
* Return the number of rows affected in the last query * *
OAuthStoreMySQLi::query_affected_rows in lib/oauth-php/library/store/OAuthStoreMySQLi.php
* Return the number of rows affected in the last query

File

lib/oauth-php/library/store/OAuthStoreMySQL.php, line 178

Class

OAuthStoreMySQL

Code

protected function query_affected_rows() {
  return mysql_affected_rows($this->conn);
}