Error message

You are browsing documentation for drupal 7.x, which is not supported anymore. Read the updated version of this page for drupal 11.x (the latest version).

function UpdateQuery_pgsql::execute

Executes the UPDATE query.

Return value

The number of rows affected by the update.

Overrides UpdateQuery::execute

File

includes/database/pgsql/query.inc, line 160

Class

UpdateQuery_pgsql

Code

public function execute() {
 $max_placeholder = 0;
 $blobs = array();
 $blob_count = 0;
 // Because we filter $fields the same way here and in __toString(), the
 // placeholders will all match up properly.
 $stmt = $this->connection 
 ->prepareQuery ((string) $this);
 // Fetch the list of blobs and sequences used on that table.
 $table_information = $this->connection 
 ->schema ()
 ->queryTableInformation ($this->table );
 // Expressions take priority over literal fields, so we process those first
 // and remove any literal fields that conflict.
 $fields = $this->fields ;
 $expression_fields = array();
 foreach ($this->expressionFields  as $field => $data) {
 if (!empty($data['arguments'])) {
 foreach ($data['arguments'] as $placeholder => $argument) {
 // We assume that an expression will never happen on a BLOB field,
 // which is a fairly safe assumption to make since in most cases
 // it would be an invalid query anyway.
 $stmt->bindParam($placeholder, $data['arguments'][$placeholder]);
 }
 }
 unset($fields[$field]);
 }
 foreach ($fields as $field => $value) {
 $placeholder = ':db_update_placeholder_' . $max_placeholder++;
 if (isset($table_information->blob_fields[$field])) {
 $blobs[$blob_count] = fopen ('php://memory', 'a');
 fwrite ($blobs[$blob_count], (string) $value);
 rewind ($blobs[$blob_count]);
 $stmt->bindParam($placeholder, $blobs[$blob_count], PDO::PARAM_LOB);
 ++$blob_count;
 }
 else {
 $stmt->bindParam($placeholder, $fields[$field]);
 }
 }
 if (count ($this->condition )) {
 $this->condition 
 ->compile ($this->connection , $this);
 $arguments = $this->condition 
 ->arguments ();
 foreach ($arguments as $placeholder => $value) {
 $stmt->bindParam($placeholder, $arguments[$placeholder]);
 }
 }
 $options = $this->queryOptions ;
 $options['already_prepared'] = TRUE;
 $this->connection 
 ->query ($stmt, $options);
 return $stmt->rowCount ();
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.