summaryrefslogtreecommitdiffstatshomepage
path: root/includes/database/sqlite/install.inc
blob: 334e09dfdcdc4352f18d20055093fe7ce1cf19b8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php
// $Id$

/**
 * @file
 * SQLite specific install functions
 */

class DatabaseTasks_sqlite extends DatabaseTasks {
  protected $pdoDriver = 'sqlite';
  public function name() {
    return 'SQLite';
  }
}