示例#1
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);
 }
示例#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;
     return parent::_update($table, $values);
 }