public function UpdateQuery::fields
7.x query.inc | public UpdateQuery::fields(array $fields) |
Adds a set of field->value pairs to be updated.
Parameters
$fields: An associative array of fields to write into the database. The array keys are the field names and the values are the values to which to set them.
Return value
UpdateQuery The called object.
File
- drupal-7.x/
includes/ database/ query.inc, line 1114 - Non-specific Database query code. Used by all engines.
Class
- UpdateQuery
- General class for an abstracted UPDATE operation.
Code
public function fields(array $fields) {
$this->fields = $fields;
return $this;
}