You are here

public function Statement::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/Statement.php, line 103
Definition of Drupal\Driver\Database\sqlsrv\Statement

Class

Statement

Namespace

Drupal\Driver\Database\sqlsrv

Code

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