public function Connection::update in Drupal 8
Same name and namespace in other branches
- 9 core/lib/Drupal/Core/Database/Connection.php \Drupal\Core\Database\Connection::update()
Prepares and returns an UPDATE query object.
Parameters
string $table: The table to use for the update statement.
array $options: (optional) An associative array of options to control how the query is run. The given options will be merged with \Drupal\Core\Database\Connection::defaultOptions().
Return value
\Drupal\Core\Database\Query\Update A new Update query object.
See also
\Drupal\Core\Database\Query\Update
\Drupal\Core\Database\Connection::defaultOptions()
File
- core/
lib/ Drupal/ Core/ Database/ Connection.php, line 899
Class
- Connection
- Base Database API class.
Namespace
Drupal\Core\DatabaseCode
public function update($table, array $options = []) {
$class = $this
->getDriverClass('Update');
return new $class($this, $table, $options);
}