Same name in this branch
  1. 4.7.x includes/database.pgsql.inc \db_query_temporary()
  2. 4.7.x includes/database.mysqli.inc \db_query_temporary()
  3. 4.7.x includes/database.mysql.inc \db_query_temporary()
Same name and namespace in other branches
  1. 5.x includes/database.pgsql.inc \db_query_temporary()
  2. 5.x includes/database.mysqli.inc \db_query_temporary()
  3. 5.x includes/database.mysql.inc \db_query_temporary()
  4. 6.x includes/database.pgsql.inc \db_query_temporary()
  5. 6.x includes/database.mysqli.inc \db_query_temporary()
  6. 6.x includes/database.mysql.inc \db_query_temporary()
  7. 7.x includes/database/database.inc \db_query_temporary()
  8. 8.9.x core/includes/database.inc \db_query_temporary()

Runs a SELECT query and stores its results in a temporary table.

Use this as a substitute for db_query() when the results need to stored in a temporary table. Temporary tables exist for the duration of the page request. User-supplied arguments to the query should be passed in as separate parameters so that they can be properly escaped to avoid SQL injection attacks.

Note that if you need to know how many results were returned, you should do a SELECT COUNT(*) on the temporary table afterwards. db_num_rows() and db_affected_rows() do not give consistent result across different database types in this case.

Parameters

$query: A string containing a normal SELECT SQL query.

...: A variable number of arguments which are substituted into the query using printf() syntax. The query arguments can be enclosed in one array instead. Valid %-modifiers are: %s, %d, %f, %b (binary data, do not enclose in '') and %%.

NOTE: using this syntax will cast NULL and FALSE values to decimal 0, and TRUE values to decimal 1.

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

Return value

A database query result resource, or FALSE if the query was not executed correctly.

Related topics

1 call to db_query_temporary()
do_search in modules/search.module
Do a query on the full-text search index for a word or words.

File

includes/database.mysqli.inc, line 292
Database interface code for MySQL database servers using the mysqli client libraries. mysqli is included in PHP 5 by default and allows developers to use the advanced features of MySQL 4.1.x, 5.0.x and beyond.

Code

function db_query_temporary($query) {
  $args = func_get_args();
  $tablename = array_pop($args);
  array_shift($args);
  $query = preg_replace('/^SELECT/i', 'CREATE TEMPORARY TABLE ' . $tablename . ' SELECT', db_prefix_tables($query));
  if (isset($args[0]) and is_array($args[0])) {

    // 'All arguments in one array' syntax
    $args = $args[0];
  }
  _db_query_callback($args, TRUE);
  $query = preg_replace_callback(DB_QUERY_REGEXP, '_db_query_callback', $query);
  return _db_query($query);
}