コード例 #1
0
ファイル: pdo_sqlsrv_driver.php プロジェクト: yang7hua/mall
 /**
  * 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
ファイル: pdo_firebird_driver.php プロジェクト: yang7hua/mall
 /**
  * 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);
 }