You are here

public function Statement::getQueryString in Drupal 8

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/Database/Statement.php \Drupal\Core\Database\Statement::getQueryString()

Gets the query string of this statement.

Return value

The query string, in its form with placeholders.

Overrides StatementInterface::getQueryString

File

core/lib/Drupal/Core/Database/Statement.php, line 72

Class

Statement
Default implementation of StatementInterface.

Namespace

Drupal\Core\Database

Code

public function getQueryString() {
  return $this->queryString;
}