Completed
Push — master ( 471540...e3dcd8 )
by Rasmus
03:02
created

PostgresDatabase::createConnection()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 2
CRAP Score 1

Importance

Changes 1
Bugs 0 Features 1
Metric Value
c 1
b 0
f 1
dl 0
loc 4
ccs 2
cts 2
cp 1
rs 10
cc 1
eloc 2
nc 1
nop 1
crap 1
1
<?php
2
3
namespace mindplay\sql\postgres;
4
5
use mindplay\sql\model\Database;
6
use mindplay\sql\model\DatabaseContainer;
7
use mindplay\sql\model\Driver;
8
use mindplay\sql\model\schema\Table;
9
use mindplay\sql\model\types\BoolType;
10
use mindplay\sql\model\types\FloatType;
11
use PDO;
12
13
class PostgresDatabase extends Database implements Driver
14
{
15 1
    protected function bootstrap(DatabaseContainer $container)
16
    {
17 1
        $container->set(Driver::class, $this);
18
        
19 1
        $container->register(BoolType::class, function () {
20 1
            return BoolType::get(true, false);
21 1
        });
22
        
23 1
        $container->alias("scalar.boolean", BoolType::class);
24
25 1
        $container->register("scalar.double", FloatType::class);
26 1
    }
27
28
    /**
29
     * @param PDO $pdo
30
     *
31
     * @return PostgresConnection
32
     */
33 1
    public function createConnection(PDO $pdo)
34
    {
35 1
        return $this->container->create(PostgresConnection::class, ['pdo' => $pdo]);
36
    }
37
38
    /**
39
     * @inheritdoc
40
     */
41 1
    public function quoteName($name)
42
    {
43 1
        return '"' . $name . '"';
44
    }
45
    
46
    /**
47
     * @param Table $from
48
     *
49
     * @return PostgresSelectQuery
50
     */
51
    public function select(Table $from)
52
    {
53
        return $this->container->create(PostgresSelectQuery::class, ['root' => $from]);
54
    }
55
    
56
    /**
57
     * @param Table $into
58
     *
59
     * @return PostgresInsertQuery
60
     */
61 1
    public function insert(Table $into)
62
    {
63 1
        return $this->container->create(PostgresInsertQuery::class, ['table' => $into]);
64
    }
65
66
    /**
67
     * @param Table $table
68
     *
69
     * @return PostgresUpdateQuery
70
     */
71
    public function update(Table $table)
72
    {
73
        return $this->container->create(PostgresUpdateQuery::class, ['root' => $table]);
74
    }
75
76
    /**
77
     * @param Table $table
78
     *
79
     * @return PostgresDeleteQuery
80
     */
81
    public function delete(Table $table)
82
    {
83
        return $this->container->create(PostgresDeleteQuery::class, ['root' => $table]);
84
    }
85
}
86