blob: 096c20901821192861857f3f3cf18eb3fbef4660 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<?php
// $Id$
/**
* @file
* SQLite specific install functions
*/
class DatabaseInstaller_sqlite extends DatabaseInstaller {
protected $pdoDriver = 'sqlite';
public function name() {
return 'SQLite';
}
}
|