diff options
Diffstat (limited to 'includes/database/sqlite')
-rw-r--r-- | includes/database/sqlite/select.inc | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/includes/database/sqlite/select.inc b/includes/database/sqlite/select.inc new file mode 100644 index 000000000..ee3d84dff --- /dev/null +++ b/includes/database/sqlite/select.inc @@ -0,0 +1,28 @@ +<?php +// $Id$ + +/** + * @file + * Select builder for SQLite embedded database engine. + */ + +/** + * @ingroup 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 "ingroup database". + */ + + |