function SelectExtender::compile
Compiles the saved conditions for later retrieval.
This method does not return anything, but simply prepares data to be retrieved via __toString() and arguments().
Parameters
\Drupal\Core\Database\Connection $connection: The database connection for which to compile the conditionals.
\Drupal\Core\Database\Query\PlaceholderInterface $queryPlaceholder: The query this condition belongs to. If not given, the current query is used.
Overrides ConditionInterface::compile
File
- 
              core/lib/ Drupal/ Core/ Database/ Query/ SelectExtender.php, line 137 
Class
- SelectExtender
- The base extender class for Select queries.
Namespace
Drupal\Core\Database\QueryCode
public function compile(Connection $connection, PlaceholderInterface $queryPlaceholder) {
  return $this->query
    ->compile($connection, $queryPlaceholder);
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
