1 | <?php |
||
18 | class SQLiteDriver implements DriverInterface |
||
19 | { |
||
20 | protected $pdo; |
||
21 | |||
22 | /** |
||
23 | * @param PDO $pdo |
||
24 | */ |
||
25 | 15 | public function __construct(PDO $pdo) |
|
29 | |||
30 | /** |
||
31 | * Returns the result. |
||
32 | * |
||
33 | * @return array |
||
34 | */ |
||
35 | 12 | public function getTable($table) |
|
67 | |||
68 | /** |
||
69 | * Shows the list of tables. |
||
70 | * |
||
71 | * @return array |
||
72 | */ |
||
73 | 3 | public function showTables() |
|
77 | } |
||
78 |