You are here

protected function OAuthStorePostgreSQL::query_affected_rows in Lingotek Translation 7.6

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

Return the number of rows affected in the last query

3 calls to OAuthStorePostgreSQL::query_affected_rows()
OAuthStorePostgreSQL::addServerToken in lib/oauth-php/library/store/OAuthStorePostgreSQL.php
Add a request token we obtained from a server.
OAuthStorePostgreSQL::checkServerNonce in lib/oauth-php/library/store/OAuthStorePostgreSQL.php
Check an nonce/timestamp combination. Clears any nonce combinations that are older than the one received.
OAuthStorePostgreSQL::exchangeConsumerRequestForAccessToken in lib/oauth-php/library/store/OAuthStorePostgreSQL.php
Exchange an authorized request token for new access token.

File

lib/oauth-php/library/store/OAuthStorePostgreSQL.php, line 1877

Class

OAuthStorePostgreSQL

Code

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