Postgresql.php
1.7 KB
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
74
75
76
77
<?php
namespace Phalcon\Db\Adapter\Pdo {
/**
* Phalcon\Db\Adapter\Pdo\Postgresql
*
* Specific functions for the Postgresql database system
* <code>
*
* $config = array(
* "host" => "192.168.0.11",
* "dbname" => "blog",
* "username" => "postgres",
* "password" => ""
* );
*
* $connection = new Phalcon\Db\Adapter\Pdo\Postgresql($config);
*
* </code>
*/
class Postgresql extends \Phalcon\Db\Adapter\Pdo implements \Phalcon\Events\EventsAwareInterface, \Phalcon\Db\AdapterInterface {
protected $_type;
protected $_dialectType;
/**
* This method is automatically called in \Phalcon\Db\Adapter\Pdo constructor.
* Call it when you need to restore a database connection.
*
* Support set search_path after connectted if schema is specified in config.
*
* @param array $descriptor
* @return boolean
*/
public function connect($descriptor=null){ }
/**
* Returns an array of \Phalcon\Db\Column objects describing a table
*
* <code>print_r($connection->describeColumns("posts")); ?></code>
*
* @param string $table
* @param string $schema
* @return \Phalcon\Db\Column[]
*/
public function describeColumns($table, $schema=null){ }
/**
* Check whether the database system requires an explicit value for identity columns
*
* @return boolean
*/
public function useExplicitIdValue(){ }
/**
* Return the default identity value to insert in an identity column
*
* @return \Phalcon\Db\RawValue
*/
public function getDefaultIdValue(){ }
/**
* Check whether the database system requires a sequence to produce auto-numeric values
*
* @return boolean
*/
public function supportSequences(){ }
}
}