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

Breadcrumb

  1. Drupal Core 11.1.x

Select.php

Same filename in this branch
  1. 11.1.x core/lib/Drupal/Core/Render/Element/Select.php
  2. 11.1.x core/lib/Drupal/Core/Database/Query/Select.php
  3. 11.1.x core/modules/pgsql/src/Driver/Database/pgsql/Select.php
  4. 11.1.x core/modules/mysql/src/Driver/Database/mysql/Select.php

Namespace

Drupal\sqlite\Driver\Database\sqlite

File

core/modules/sqlite/src/Driver/Database/sqlite/Select.php

View source
<?php

namespace Drupal\sqlite\Driver\Database\sqlite;

use Drupal\Core\Database\Query\Select as QuerySelect;

/**
 * SQLite implementation of \Drupal\Core\Database\Query\Select.
 */
class Select extends QuerySelect {
    public function forUpdate($set = TRUE) {
        // SQLite does not support FOR UPDATE so nothing to do.
        return $this;
    }

}

Classes

Title Deprecated Summary
Select SQLite implementation of \Drupal\Core\Database\Query\Select.

API Navigation

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