DatabaseConnection::update

7 database.inc public DatabaseConnection::update($table, array $options = array())

Prepares and returns an UPDATE query object.

Parameters

$options: An array of options on the query.

Return value

UpdateQuery A new UpdateQuery object.

See also

UpdateQuery

File

includes/database/database.inc, line 841
Core systems for the database layer.

Code

public function update($table, array $options = array()) {
  $class = $this->getDriverClass('UpdateQuery', array('query.inc'));
  return new $class($this, $table, $options);
}
Login or register to post comments