Exemple #1
0
 /**
  * This function sets the associated value with the specified column.
  *
  * @access public
  * @param string $column                        the column to be set
  * @param string $value                         the value to be set
  * @return DB_SQL_Update_Proxy                  a reference to the current instance
  */
 public function set($column, $value)
 {
     $this->builder->set($column, $value);
     return $this;
 }