db_query_temporary

Definition

db_query_temporary($query, $args, $tablename, $options = array())
drupal/includes/database/database.inc, line 1604

Description

Execute a query string against the active database and save the result set to a temp table.

@see DatabaseConnection::defaultOptions()

Parameters

$query The prepared statement query to run. Although it will accept both named and unnamed placeholders, named placeholders are strongly preferred as they are more self-documenting.

$args An array of values to substitute into the query. If the query uses named placeholders, this is an associative array in any order. If the query uses unnamed placeholders (?), this is an indexed array and the order must match the order of placeholders in the query string.

$tablename The name of the temporary table to select into. This name will not be prefixed as there is no risk of collision.

$options An array of options to control how the query operates.

Related topics

Namesort iconDescription
Database abstraction layerAllow the use of different database servers using the same code base.

Code

function db_query_temporary($query, $args, $tablename, $options = array()) {
  if (!is_array($args)) {
    $args = func_get_args();
    array_shift($args);
  }
  list($query, $args, $options) = _db_query_process_args($query, $args, $options);

  return Database::getActiveConnection($options['target'])->queryTemporary($query, $args, $tablename, $options);
}