Example #1
0
 /**
  * @param string $table
  * @param mixed  $conditions
  * @param array  $params
  *
  * @return int
  */
 public function delete($table, $conditions = '', $params = array())
 {
     $table = $this->getConnection()->addTablePrefix($table);
     $conditions = $this->_normalizeConditions($conditions, $params);
     return parent::delete($table, $conditions, $params);
 }
 /**
  * 
  * @param type $table
  * @param type $conditions
  * @param type $params
  * @return integer Description
  */
 public function delete($table, $conditions = '', $params = array())
 {
     return parent::delete($table, $this->processConditionsEx($conditions), $params);
 }