Example #1
0
 /**
  * Set the query to DELETE and load table
  *
  * @param  string    $table
  * @return \Kanso\Database\Query\Builder
  */
 public function DELETE_FROM($table)
 {
     $table = $this->indexFilter($table);
     $this->Query->setTable($table);
     $this->Query->setOperation('DELETE');
     return $this;
 }