diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2010-11-29 19:57:57 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2010-11-29 19:57:57 +0000 |
commit | c1ea227f529512739f80f16b33969532f4218049 (patch) | |
tree | 6d6a024c749f4df201155a5f009201ed4a0f3e09 /includes/database/sqlite | |
parent | b2c5a8c864f9abd26c5cff8eb2421713cfb25841 (diff) | |
download | brdo-c1ea227f529512739f80f16b33969532f4218049.tar.gz brdo-c1ea227f529512739f80f16b33969532f4218049.tar.bz2 |
#851136: Committing missing files.
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". + */ + + |