You are here

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

Wrapper method for db_set_active().

Parameters

$name: The database name you want to activate.

1 call to views_plugin_query_default::db_set_active()
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 1280
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_set_active($name = 'default') {
  return db_set_active($name);
}