public function MergeQuery::updateFields

public MergeQuery::updateFields(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

MergeQuery The called object.

File

includes/database/query.inc, line 1372
Non-specific Database query code. Used by all engines.

Class

MergeQuery
General class for an abstracted MERGE query operation.

Code

public function updateFields(array $fields) {
  $this->updateFields = $fields;
  $this->needsUpdate = TRUE;
  return $this;
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/includes!database!query.inc/function/MergeQuery::updateFields/7.x