Update.php in Drupal 10
Same filename in this branch
- 10 update.php
- 10 core/assets/scaffold/files/update.php
- 10 core/lib/Drupal/Core/Database/Query/Update.php
- 10 core/lib/Drupal/Core/Database/Driver/pgsql/Update.php
- 10 core/modules/sqlite/src/Driver/Database/sqlite/Update.php
- 10 core/modules/pgsql/src/Driver/Database/pgsql/Update.php
- 10 core/modules/mysql/src/Driver/Database/mysql/Update.php
- 10 core/tests/fixtures/database_drivers/module/corefake/src/Driver/Database/corefakeWithAllCustomClasses/Update.php
- 10 core/tests/Drupal/Tests/Composer/Plugin/Scaffold/fixtures/drupal-assets-fixture/assets/update.php
- 10 core/modules/system/tests/modules/driver_test/src/Driver/Database/DrivertestMysql/Update.php
- 10 core/modules/system/tests/modules/driver_test/src/Driver/Database/DrivertestPgsql/Update.php
- 10 core/modules/system/tests/modules/driver_test/src/Driver/Database/DrivertestMysqlDeprecatedVersion/Update.php
Namespace
Drupal\pgsql\Driver\Database\pgsqlFile
core/modules/pgsql/src/Driver/Database/pgsql/Update.phpView source
<?php
namespace Drupal\pgsql\Driver\Database\pgsql;
use Drupal\Core\Database\Query\Update as QueryUpdate;
use Drupal\Core\Database\Query\SelectInterface;
/**
* PostgreSQL implementation of \Drupal\Core\Database\Query\Update.
*/
class Update extends QueryUpdate {
/**
* {@inheritdoc}
*/
public function __construct(Connection $connection, string $table, array $options = []) {
// @todo Remove the __construct in Drupal 11.
// @see https://www.drupal.org/project/drupal/issues/3256524
parent::__construct($connection, $table, $options);
unset($this->queryOptions['return']);
}
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);
}
}
}
Classes
Name | Description |
---|---|
Update | PostgreSQL implementation of \Drupal\Core\Database\Query\Update. |