| Versionen | |
|---|---|
| drupal7 | public DeleteQuery::execute() |
includes/
<?php
public function execute() {
$values = array();
if (count($this->condition)) {
$this->condition->compile($this->connection);
$values = $this->condition->arguments();
}
return $this->connection->query((string) $this, $values, $this->queryOptions);
}
?>
Kommentare
Kommentar hinzufügen