You are here

public function StubConnection::queryTemporary in Drupal 8

Same name and namespace in other branches
  1. 9 core/tests/Drupal/Tests/Core/Database/Stub/StubConnection.php \Drupal\Tests\Core\Database\Stub\StubConnection::queryTemporary()

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

Use this as a substitute for ->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.

Parameters

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

array $args: (optional) An array of values to substitute into the query at placeholder markers.

array $options: (optional) An associative array of options to control how the query is run. See the documentation for DatabaseConnection::defaultOptions() for details.

Return value

string The name of the temporary table.

Overrides Connection::queryTemporary

File

core/tests/Drupal/Tests/Core/Database/Stub/StubConnection.php, line 33

Class

StubConnection
A stub of the abstract Connection class for testing purposes.

Namespace

Drupal\Tests\Core\Database\Stub

Code

public function queryTemporary($query, array $args = [], array $options = []) {
  return '';
}