function views_plugin_query_default::db_fetch_object

Wrapper method for db_fetch_object().

Parameters

$result: A database result used for db_fetch_object().

1 call to views_plugin_query_default::db_fetch_object()
views_plugin_query_default::execute in plugins/views_plugin_query_default.inc
Executes the query and fills the associated view object with according values.

File

plugins/views_plugin_query_default.inc, line 1270

Class

views_plugin_query_default
Object used to create a SELECT query.

Code

function db_fetch_object($result) {
    return db_fetch_object($result);
}