db_update($table, array $options = array())Returns a new UpdateQuery object for the active database.
$table The table to update.
$options An array of options to control how the query operates.
UpdateQuery A new UpdateQuery object for this connection.
includes/database/database.inc, line 2261
<?php
function db_update($table, array $options = array()) {
if (empty($options['target']) || $options['target'] == 'slave') {
$options['target'] = 'default';
}
return Database::getConnection($options['target'])->update($table, $options);
}
?> | This work is licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License | ![]() |
The current recommended MediaMosa version is 3.2.2. Release notes are available in MediaMosa Trac.
