blob: 53736b820052eb96ba100062eafd6b2f92ad9bd0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
<?php
namespace ipl\Sql;
/**
* SQL DELETE query
*/
class Delete implements CommonTableExpressionInterface, WhereInterface
{
use CommonTableExpression;
use Where;
/** @var array|null The FROM part of the DELETE query */
protected $from;
/**
* Get the FROM part of the DELETE query
*
* @return array|null
*/
public function getFrom()
{
return $this->from;
}
/**
* Set the FROM part of the DELETE query
*
* Note that this method does NOT quote the table you specify for the DELETE FROM.
* If you allow user input here, you must protected yourself against SQL injection using
* {@link Connection::quoteIdentifier()} for the table names passed to this method.
* If you are using special table names, e.g. reserved keywords for your DBMS, you are required to use
* {@link Connection::quoteIdentifier()} as well.
*
* @param string|array $table The table to delete data from. The table specification must be in one of the
* following formats: 'table', 'table alias', ['alias' => 'table']
*
* @return $this
*/
public function from($table)
{
$this->from = ! is_array($table) ? [$table] : $table;
return $this;
}
public function __clone()
{
$this->cloneCte();
$this->cloneWhere();
}
}
|