Executes the DELETE query.
int The number of rows affected by the delete query.
Overrides Query::execute
public function execute() {
$values = array();
if (count($this->condition)) {
$this->condition
->compile($this->connection, $this);
$values = $this->condition
->arguments();
}
return $this->connection
->query((string) $this, $values, $this->queryOptions);
}