2020-04-02 00:02:51 +02:00
|
|
|
<?php
|
|
|
|
|
2022-11-18 18:06:46 +01:00
|
|
|
namespace Core\Driver\SQL\Query;
|
2020-04-02 00:02:51 +02:00
|
|
|
|
2022-11-18 18:06:46 +01:00
|
|
|
use Core\Driver\SQL\SQL;
|
2020-04-04 01:15:59 +02:00
|
|
|
|
2022-11-26 23:57:28 +01:00
|
|
|
class Delete extends ConditionalQuery {
|
2020-04-02 00:02:51 +02:00
|
|
|
|
2020-04-03 17:39:58 +02:00
|
|
|
private string $table;
|
2020-04-02 00:02:51 +02:00
|
|
|
|
2021-04-02 21:58:06 +02:00
|
|
|
public function __construct(SQL $sql, string $table) {
|
2020-04-02 00:02:51 +02:00
|
|
|
parent::__construct($sql);
|
|
|
|
$this->table = $table;
|
|
|
|
}
|
|
|
|
|
2021-04-02 21:58:06 +02:00
|
|
|
public function getTable(): string { return $this->table; }
|
2021-04-08 18:29:47 +02:00
|
|
|
|
2021-04-09 16:05:36 +02:00
|
|
|
public function build(array &$params): ?string {
|
2021-04-08 18:29:47 +02:00
|
|
|
$table = $this->sql->tableName($this->getTable());
|
2022-11-26 23:57:28 +01:00
|
|
|
$where = $this->getWhereClause($params);
|
2021-04-08 18:29:47 +02:00
|
|
|
return "DELETE FROM $table$where";
|
|
|
|
}
|
2020-04-03 17:39:58 +02:00
|
|
|
}
|