You are here

public function Select::forUpdate in Drupal 10

File

core/modules/sqlite/src/Driver/Database/sqlite/Select.php, line 22

Class

Select
SQLite implementation of \Drupal\Core\Database\Query\Select.

Namespace

Drupal\sqlite\Driver\Database\sqlite

Code

public function forUpdate($set = TRUE) {

  // SQLite does not support FOR UPDATE so nothing to do.
  return $this;
}