protected function OAuthStoreAnymeta::query_all_assoc in Lingotek Translation 7.7
Same name and namespace in other branches
- 7.2 lib/oauth-php/library/store/OAuthStoreAnyMeta.php \OAuthStoreAnymeta::query_all_assoc()
- 7.3 lib/oauth-php/library/store/OAuthStoreAnyMeta.php \OAuthStoreAnymeta::query_all_assoc()
- 7.4 lib/oauth-php/library/store/OAuthStoreAnyMeta.php \OAuthStoreAnymeta::query_all_assoc()
- 7.5 lib/oauth-php/library/store/OAuthStoreAnyMeta.php \OAuthStoreAnymeta::query_all_assoc()
- 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
Code
protected function query_all_assoc($sql) {
list($sql, $args) = $this
->sql_args(func_get_args());
return any_db_query_all_assoc($sql, $args);
}