function Connection::update
Prepares and returns an UPDATE query object.
@todo in drupal:11.0.0, return a new Query\Update instance directly.
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.
Overrides Connection::update
File
-
core/
modules/ sqlite/ src/ Driver/ Database/ sqlite/ Connection.php, line 557
Class
- Connection
- SQLite implementation of \Drupal\Core\Database\Connection.
Namespace
Drupal\sqlite\Driver\Database\sqliteCode
public function update($table, array $options = []) {
return new Update($this, $table, $options);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.