function UpdateQuery::__construct
Constructs an UpdateQuery object.
Parameters
DatabaseConnection $connection: A DatabaseConnection object.
string $table: Name of the table to associate with this query.
array $options: Array of database options.
Overrides Query::__construct
File
-
includes/
database/ query.inc, line 1026
Class
- UpdateQuery
- General class for an abstracted UPDATE operation.
Code
public function __construct(DatabaseConnection $connection, $table, array $options = array()) {
$options['return'] = Database::RETURN_AFFECTED;
parent::__construct($connection, $options);
$this->table = $table;
$this->condition = new DatabaseCondition('AND');
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.