summaryrefslogtreecommitdiff
path: root/vendor/PicoDb/Drivers/Postgres.php
blob: 641727f3f04dbd8a33fddcd66e5f169d4c1431b1 (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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<?php

namespace PicoDb;

class Postgres extends \PDO {

    private $schema_table = 'schema_version';


    public function __construct(array $settings)
    {
        $required_atttributes = array(
            'hostname',
            'username',
            'password',
            'database',
        );

        foreach ($required_atttributes as $attribute) {
            if (! isset($settings[$attribute])) {
                throw new \LogicException('This configuration parameter is missing: "'.$attribute.'"');
            }
        }

        $dsn = 'pgsql:host='.$settings['hostname'].';dbname='.$settings['database'];

        parent::__construct($dsn, $settings['username'], $settings['password']);

        if (isset($settings['schema_table'])) {
            $this->schema_table = $settings['schema_table'];
        }
    }


    public function getSchemaVersion()
    {
        $this->exec("CREATE TABLE IF NOT EXISTS ".$this->schema_table." (version SMALLINT DEFAULT 0)");

        $rq = $this->prepare('SELECT version FROM '.$this->schema_table.'');
        $rq->execute();
        $result = $rq->fetch(\PDO::FETCH_ASSOC);

        if (isset($result['version'])) {
            return (int) $result['version'];
        }
        else {
            $this->exec('INSERT INTO '.$this->schema_table.' VALUES(0)');
        }

        return 0;
    }


    public function setSchemaVersion($version)
    {
        $rq = $this->prepare('UPDATE '.$this->schema_table.' SET version=?');
        $rq->execute(array($version));
    }


    public function getLastId()
    {
        $rq = $this->prepare('SELECT LASTVAL()');
        $rq->execute();
        return $rq->fetchColumn();
    }


    public function escapeIdentifier($value)
    {
        return $value;
    }
}