public function SelectQueryExtender::preExecute
Generic preparation and validation for a SELECT query.
Return value
TRUE if the validation was successful, FALSE if not.
Overrides SelectQueryInterface::preExecute
4 calls to SelectQueryExtender::preExecute()
- PagerDefault::execute in drupal-7.x/
includes/ pager.inc - Override the execute method.
- PagerDefault::execute in drupal-7.x/
includes/ pager.inc - Override the execute method.
- SelectQueryExtender::execute in drupal-7.x/
includes/ database/ select.inc - SelectQueryExtender::execute in drupal-7.x/
includes/ database/ select.inc
Archivo
- drupal-7.x/
includes/ database/ select.inc, line 706
Class
- SelectQueryExtender
- The base extender class for Select queries.
Código
public function preExecute(SelectQueryInterface $query = NULL) {
// If no query object is passed in, use $this.
if (!isset($query)) {
$query = $this;
}
return $this->query->preExecute($query);
}