You are here

protected function OAuthStoreAnymeta::query_all_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_all_assoc()
  2. 7.2 lib/oauth-php/library/store/OAuthStoreAnyMeta.php \OAuthStoreAnymeta::query_all_assoc()
  3. 7.4 lib/oauth-php/library/store/OAuthStoreAnyMeta.php \OAuthStoreAnymeta::query_all_assoc()
  4. 7.5 lib/oauth-php/library/store/OAuthStoreAnyMeta.php \OAuthStoreAnymeta::query_all_assoc()
  5. 7.6 lib/oauth-php/library/store/OAuthStoreAnyMeta.php \OAuthStoreAnymeta::query_all_assoc()

* Perform a query, ignore the results * *

Parameters

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

Overrides OAuthStoreMySQL::query_all_assoc

File

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

Class

OAuthStoreAnymeta

Code

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