Gdn_SQLDriver::getUpdate PHP Method

getUpdate() public method

Returns an update statement for the specified table with the provided $Data.
public getUpdate ( array $Tables, array $Data, mixed $Where )
$Tables array The names of the tables to updated data in.
$Data array An associative array of FieldName => Value pairs that should be inserted $Table.
$Where mixed A where clause (or array containing multiple where clauses) to be applied to the where portion of the update statement.
    public function getUpdate($Tables, $Data, $Where)
    {
        trigger_error(errorMessage('The selected database engine does not perform the requested task.', $this->ClassName, 'GetUpdate'), E_USER_ERROR);
    }