public function Statement::getQueryString in Drupal 9
Same name and namespace in other branches
- 8 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 87
Class
- Statement
- Default implementation of StatementInterface.
Namespace
Drupal\Core\DatabaseCode
public function getQueryString() {
return $this->queryString;
}