Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. Update.php

class Update

Same name in this branch
  1. 11.1.x core/lib/Drupal/Core/Database/Query/Update.php \Drupal\Core\Database\Query\Update
  2. 11.1.x core/modules/sqlite/src/Driver/Database/sqlite/Update.php \Drupal\sqlite\Driver\Database\sqlite\Update
  3. 11.1.x core/modules/mysql/src/Driver/Database/mysql/Update.php \Drupal\mysql\Driver\Database\mysql\Update

PostgreSQL implementation of \Drupal\Core\Database\Query\Update.

Hierarchy

  • class \Drupal\Core\Database\Query\Query implements \Drupal\Core\Database\Query\PlaceholderInterface
    • class \Drupal\Core\Database\Query\Update extends \Drupal\Core\Database\Query\Query implements \Drupal\Core\Database\Query\ConditionInterface uses \Drupal\Core\Database\Query\QueryConditionTrait
      • class \Drupal\pgsql\Driver\Database\pgsql\Update extends \Drupal\Core\Database\Query\Update

Expanded class hierarchy of Update

107 string references to 'Update'
AllowedPackages::event in composer/Plugin/Scaffold/AllowedPackages.php
Handles package events during a 'composer require' operation.
BaseDependencyCommand::doExecute in vendor/composer/composer/src/Composer/Command/BaseDependencyCommand.php
Execute the command.
BlockContentHooks::entityOperation in core/modules/block_content/src/Hook/BlockContentHooks.php
Implements hook_entity_operation().
BlockUser::access in core/modules/user/src/Plugin/Action/BlockUser.php
Checks object access.
CommentAccessControlHandler::checkAccess in core/modules/comment/src/CommentAccessControlHandler.php
Performs access checks.

... See full list

File

core/modules/pgsql/src/Driver/Database/pgsql/Update.php, line 11

Namespace

Drupal\pgsql\Driver\Database\pgsql
View source
class Update extends QueryUpdate {
    public function execute() {
        $max_placeholder = 0;
        $blobs = [];
        $blob_count = 0;
        // Because we filter $fields the same way here and in __toString(), the
        // placeholders will all match up properly.
        $stmt = $this->connection
            ->prepareStatement((string) $this, $this->queryOptions, TRUE);
        // 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;
        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->getClientStatement()
                        ->bindParam($placeholder, $data['arguments'][$placeholder]);
                }
            }
            if ($data['expression'] instanceof SelectInterface) {
                $data['expression']->compile($this->connection, $this);
                $select_query_arguments = $data['expression']->arguments();
                foreach ($select_query_arguments as $placeholder => $argument) {
                    $stmt->getClientStatement()
                        ->bindParam($placeholder, $select_query_arguments[$placeholder]);
                }
            }
            unset($fields[$field]);
        }
        foreach ($fields as $field => $value) {
            $placeholder = ':db_update_placeholder_' . $max_placeholder++;
            if (isset($table_information->blob_fields[$field]) && $value !== NULL) {
                $blobs[$blob_count] = fopen('php://memory', 'a');
                fwrite($blobs[$blob_count], $value);
                rewind($blobs[$blob_count]);
                $stmt->getClientStatement()
                    ->bindParam($placeholder, $blobs[$blob_count], \PDO::PARAM_LOB);
                ++$blob_count;
            }
            else {
                $stmt->getClientStatement()
                    ->bindParam($placeholder, $fields[$field]);
            }
        }
        if (count($this->condition)) {
            $this->condition
                ->compile($this->connection, $this);
            $arguments = $this->condition
                ->arguments();
            foreach ($arguments as $placeholder => $value) {
                $stmt->getClientStatement()
                    ->bindParam($placeholder, $arguments[$placeholder]);
            }
        }
        $this->connection
            ->addSavepoint();
        try {
            $stmt->execute(NULL, $this->queryOptions);
            $this->connection
                ->releaseSavepoint();
            return $stmt->rowCount();
        } catch (\Exception $e) {
            $this->connection
                ->rollbackSavepoint();
            $this->connection
                ->exceptionHandler()
                ->handleExecutionException($e, $stmt, [], $this->queryOptions);
        }
    }

}

Members

Title Sort descending Modifiers Object type Summary Overriden Title Overrides
Query::$comments protected property An array of comments that can be prepended to a query.
Query::$connection protected property The connection object on which to run this query.
Query::$connectionKey protected property The key of the connection object.
Query::$connectionTarget protected property The target of the connection object.
Query::$nextPlaceholder protected property The placeholder counter.
Query::$queryOptions protected property The query options to pass on to the connection object.
Query::$uniqueIdentifier protected property A unique identifier for this query object.
Query::comment public function Adds a comment to the query.
Query::getComments public function Returns a reference to the comments array for the query.
Query::getConnection public function Gets the database connection to be used for the query.
Query::nextPlaceholder public function Gets the next placeholder value for this query object. Overrides PlaceholderInterface::nextPlaceholder
Query::uniqueIdentifier public function Returns a unique identifier for this object. Overrides PlaceholderInterface::uniqueIdentifier
Query::__clone public function Implements the magic __clone function. 1
Query::__sleep public function Implements the magic __sleep function to disconnect from the database.
Query::__wakeup public function Implements the magic __wakeup function to reconnect to the database.
QueryConditionTrait::$condition protected property The condition object for this query.
QueryConditionTrait::alwaysFalse public function
QueryConditionTrait::andConditionGroup public function
QueryConditionTrait::compile public function 1
QueryConditionTrait::compiled public function 1
QueryConditionTrait::condition public function
QueryConditionTrait::conditionGroupFactory public function
QueryConditionTrait::conditions public function
QueryConditionTrait::exists public function
QueryConditionTrait::isNotNull public function
QueryConditionTrait::isNull public function
QueryConditionTrait::notExists public function
QueryConditionTrait::orConditionGroup public function
QueryConditionTrait::where public function
Update::$arguments protected property An array of values to update to.
Update::$expressionFields protected property Array of fields to update to an expression in case of a duplicate record.
Update::$fields protected property An array of fields that will be updated.
Update::$table protected property The table to update.
Update::arguments public function Gets a complete list of all values to insert into the prepared statement. Overrides QueryConditionTrait::arguments
Update::execute public function Executes the UPDATE query. Overrides Update::execute
Update::expression public function Specifies fields to be updated as an expression.
Update::fields public function Adds a set of field->value pairs to be updated.
Update::getQueryArguments protected function Returns the query arguments with placeholders mapped to their values.
Update::__construct public function Constructs an Update query object. Overrides Query::__construct
Update::__toString public function Implements PHP magic __toString method to convert the query to a string. Overrides Query::__toString

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal