public Connection::update($table, array $options = array())
Prepares and returns an UPDATE query object.
Parameters
string $table: The table to use for the update statement.
array $options: (optional) An array of options on the query.
Return value
\Drupal\Core\Database\Query\Update A new Update query object.
See also
\Drupal\Core\Database\Query\Update
File
- core/lib/Drupal/Core/Database/Connection.php, line 857
Class
- Connection
- Base Database API class.
Namespace
Drupal\Core\Database
Code
1 2 3 4 | public function update( $table , array $options = array ()) { $class = $this ->getDriverClass( 'Update' ); return new $class ( $this , $table , $options ); } |
Please login to continue.