function UpdateQuery::isNull

Implements QueryConditionInterface::isNull().

Parameters

$field: The name of the field to check.

Return value

QueryConditionInterface The called object.

Overrides QueryConditionInterface::isNull

File

includes/database/query.inc, line 1045

Class

UpdateQuery
General class for an abstracted UPDATE operation.

Code

public function isNull($field) {
  $this->condition
    ->isNull($field);
  return $this;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.