/**
  * Update statement
  *
  * Generates a platform-specific update string from the supplied data
  *
  * @param	string	$table
  * @param	array	$values
  * @return	string
  */
 protected function _update($table, $values)
 {
     $this->qb_limit = FALSE;
     return parent::_update($table, $values);
 }
Example #2
0
 /**
  * Update statement
  *
  * Generates a platform-specific update string from the supplied data
  *
  * @param	string	$table
  * @param	array	$values
  * @return	string
  */
 protected function _update($table, $values)
 {
     $this->qb_limit = FALSE;
     $this->qb_orderby = array();
     return parent::_update($table, $values);
 }
Example #3
0
 /**
  * Update statement.
  *
  * Generates a platform-specific update string from the supplied data
  *
  * @param string $table
  * @param array  $values
  *
  * @return string
  */
 protected function _update($table, $values)
 {
     $this->qb_limit = false;
     $this->qb_orderby = [];
     return parent::_update($table, $values);
 }