Mercurial > hg > rr-repo
view includes/database/sqlite/select.inc @ 13:134d4b2e75f6
updated quicktabs and google analytics modules
author | danieleb <danielebarchiesi@me.com> |
---|---|
date | Tue, 29 Oct 2013 13:48:59 +0000 |
parents | ff03f76ab3fe |
children |
line wrap: on
line source
<?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". */