Projet

Général

Profil

Paste
Télécharger (404 octets) Statistiques
| Branche: | Révision:

root / drupal7 / includes / database / sqlite / select.inc @ 01dfd3b5

1
<?php
2

    
3
/**
4
 * @file
5
 * Select builder for SQLite embedded database engine.
6
 */
7

    
8
/**
9
 * @addtogroup database
10
 * @{
11
 */
12

    
13
/**
14
 * SQLite specific query builder for SELECT statements.
15
 */
16
class SelectQuery_sqlite extends SelectQuery {
17
  public function forUpdate($set = TRUE) {
18
    // SQLite does not support FOR UPDATE so nothing to do.
19
    return $this;
20
  }
21
}
22

    
23
/**
24
 * @} End of "addtogroup database".
25
 */
26

    
27