summaryrefslogtreecommitdiff
path: root/vendor/PicoDb/Drivers/Sqlite.php
blob: 6555e73d23a944c7823de830a8fc3256047eef7a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<?php

namespace PicoDb;

class Sqlite extends \PDO {


    public function __construct($filename)
    {
        parent::__construct('sqlite:'.$filename);

        $this->exec('PRAGMA foreign_keys = ON');
    }


    public function getSchemaVersion()
    {
        $rq = $this->prepare('PRAGMA user_version');
        $rq->execute();
        $result = $rq->fetch(\PDO::FETCH_ASSOC);

        if (isset($result['user_version'])) {

            return $result['user_version'];
        }

        return 0;
    }


    public function setSchemaVersion($version)
    {
        $this->exec('PRAGMA user_version='.$version);
    }


    public function getLastId()
    {
        return $this->lastInsertId();
    }


    public function escapeIdentifier($value)
    {
        if (strpos($value, '.') !== false) return $value;
        return '"'.$value.'"';
    }
}