You are here

protected function OAuthStoreAnymeta::query_row_assoc in Lingotek Translation 7.3

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

* Perform a query, return the first row * *

Parameters

string sql: * @param vararg arguments (for sprintf) * @return array

Overrides OAuthStoreMySQL::query_row_assoc

File

lib/oauth-php/library/store/OAuthStoreAnyMeta.php, line 192

Class

OAuthStoreAnymeta

Code

protected function query_row_assoc($sql) {
  list($sql, $args) = $this
    ->sql_args(func_get_args());
  return any_db_query_row_assoc($sql, $args);
}