mirror of
https://github.com/tag1consulting/d7_to_d10_migration.git
synced 2024-11-14 12:13:26 +00:00
27 lines
404 B
PHP
27 lines
404 B
PHP
<?php
|
|
|
|
/**
|
|
* @file
|
|
* Select builder for SQLite embedded database engine.
|
|
*/
|
|
|
|
/**
|
|
* @addtogroup database
|
|
* @{
|
|
*/
|
|
|
|
/**
|
|
* SQLite specific query builder for SELECT statements.
|
|
*/
|
|
class SelectQuery_sqlite extends SelectQuery {
|
|
public function forUpdate($set = TRUE) {
|
|
// SQLite does not support FOR UPDATE so nothing to do.
|
|
return $this;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @} End of "addtogroup database".
|
|
*/
|
|
|
|
|