select.inc 404 B

123456789101112131415161718192021222324252627
  1. <?php
  2. /**
  3. * @file
  4. * Select builder for SQLite embedded database engine.
  5. */
  6. /**
  7. * @addtogroup database
  8. * @{
  9. */
  10. /**
  11. * SQLite specific query builder for SELECT statements.
  12. */
  13. class SelectQuery_sqlite extends SelectQuery {
  14. public function forUpdate($set = TRUE) {
  15. // SQLite does not support FOR UPDATE so nothing to do.
  16. return $this;
  17. }
  18. }
  19. /**
  20. * @} End of "addtogroup database".
  21. */