You are here

public function DatabaseStatementBase::getQueryString in Drupal 7

Gets the query string of this statement.

Return value

The query string, in its form with placeholders.

Overrides DatabaseStatementInterface::getQueryString

File

includes/database/database.inc, line 2288
Core systems for the database layer.

Class

DatabaseStatementBase
Default implementation of DatabaseStatementInterface.

Code

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