Select.php
Same filename in this branch
Namespace
Drupal\sqlite\Driver\Database\sqliteFile
-
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. |