You are here

public function StatementBase::getQueryString in Drupal driver for SQL Server and SQL Azure 8.2

Gets the query string of this statement.

Return value

The query string, in its form with placeholders.

Overrides StatementInterface::getQueryString

File

drivers/lib/Drupal/Driver/Database/sqlsrv/StatementBase.php, line 72
Contains \Drupal\Core\Database\Statement.

Class

StatementBase
Default implementation of StatementInterface.

Namespace

Drupal\Driver\Database\sqlsrv

Code

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