protected function OAuthStorePostgreSQL::query_affected_rows in Lingotek Translation 7.3
Same name and namespace in other branches
- 7.7 lib/oauth-php/library/store/OAuthStorePostgreSQL.php \OAuthStorePostgreSQL::query_affected_rows()
- 7.2 lib/oauth-php/library/store/OAuthStorePostgreSQL.php \OAuthStorePostgreSQL::query_affected_rows()
- 7.4 lib/oauth-php/library/store/OAuthStorePostgreSQL.php \OAuthStorePostgreSQL::query_affected_rows()
- 7.5 lib/oauth-php/library/store/OAuthStorePostgreSQL.php \OAuthStorePostgreSQL::query_affected_rows()
- 7.6 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
Code
protected function query_affected_rows() {
return $this->_lastAffectedRows;
}