|
@@ 378-380 (lines=3) @@
|
| 375 |
|
|
| 376 |
|
protected function buildCommand() { |
| 377 |
|
switch ($this->command) { |
| 378 |
|
case static::UPDATE: |
| 379 |
|
$this->build[] = $this->command . " " . $this->quoteTable($this->table); |
| 380 |
|
break; |
| 381 |
|
|
| 382 |
|
case static::DELETE: |
| 383 |
|
$this->build[] = $this->command . " FROM " . $this->quoteTable($this->table); |
|
@@ 382-384 (lines=3) @@
|
| 379 |
|
$this->build[] = $this->command . " " . $this->quoteTable($this->table); |
| 380 |
|
break; |
| 381 |
|
|
| 382 |
|
case static::DELETE: |
| 383 |
|
$this->build[] = $this->command . " FROM " . $this->quoteTable($this->table); |
| 384 |
|
break; |
| 385 |
|
|
| 386 |
|
case static::REPLACE: |
| 387 |
|
case static::INSERT_IGNORE: |