You are here

function views_plugin_query_default::db_fetch_object in Views (for Drupal 7) 6.3

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
views_plugin_query_default.inc Defines the default query object which builds SQL to execute using the Drupal database API.

Class

views_plugin_query_default
Object used to create a SELECT query.

Code

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