-
Notifications
You must be signed in to change notification settings - Fork 1
/
DBPostgres.php
245 lines (217 loc) · 5.35 KB
/
DBPostgres.php
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
<?php
namespace Dabl\Adapter;
use Dabl\Adapter\Propel\Model\Database;
use Dabl\Adapter\Propel\Platform\PgsqlPlatform;
use Dabl\Adapter\Propel\Reverse\PgsqlSchemaParser;
use DateTimeZone;
use PDOException;
/**
* This is used to connect to PostgresQL databases.
*/
class DBPostgres extends DABLPDO {
/**
* Returns SQL that converts a date value to the start of the hour
*
* @param string $date
* @return string
*/
function hourStart($date) {
return "DATE_TRUNC('hour', $date::TIMESTAMP)::TIMESTAMP";
}
/**
* Returns SQL that converts a date value to the start of the day
*
* @param string $date
* @return string
*/
function dayStart($date) {
return "DATE_TRUNC('day', $date::DATE)::DATE";
}
/**
* Returns SQL that converts a date value to the first day of the week
*
* @param string $date
* @return string
*/
function weekStart($date) {
return "(DATE_TRUNC('week', $date::DATE) - '1 days'::INTERVAL)::DATE";
}
/**
* Returns SQL that converts a date value to the first day of the month
*
* @param string $date
* @return string
*/
function monthStart($date) {
return "DATE_TRUNC('month', $date::DATE)::DATE";
}
/**
* Returns SQL which converts the date value to its value in the target timezone
*
* @param string $date SQL column expression
* @param string|DateTimeZone $to_tz DateTimeZone or timezone id
* @param string|DateTimeZone $from_tz DateTimeZone or timezone id
* @return string
*/
function convertTimeZone($date, $to_tz, $from_tz = null) {
if ($to_tz instanceof DateTimeZone) {
$to_tz = $to_tz->getName();
}
if ($from_tz) {
if ($from_tz instanceof DateTimeZone) {
$from_tz = $from_tz->getName();
}
return "(($date)::TIMESTAMP AT TIME ZONE '$from_tz' AT TIME ZONE '$to_tz')";
}
return "(($date)::TIMESTAMPTZ AT TIME ZONE '$to_tz')";
}
/**
* @var int the current transaction depth
*/
protected $_transactionDepth = 0;
/**
* This method is used to ignore case.
*
* @param string $in The string to transform to upper case.
* @return string The upper case string.
*/
function toUpperCase($in) {
return "UPPER(" . $in . ")";
}
/**
* This method is used to ignore case.
*
* @param in The string whose case to ignore.
* @return The string in a case that can be ignored.
*/
function ignoreCase($in) {
return "UPPER(" . $in . ")";
}
/**
* Returns SQL which concatenates the second string to the first.
*
* @param string String to concatenate.
* @param string String to append.
* @return string
*/
function concatString($s1, $s2) {
return "($s1 || $s2)";
}
/**
* Returns SQL which extracts a substring.
*
* @param string String to extract from.
* @param int Offset to start from.
* @param int Number of characters to extract.
* @return string
*/
function subString($s, $pos, $len) {
return "substring($s from $pos" . ($len > -1 ? "for $len" : "") . ")";
}
/**
* Returns SQL which calculates the length (in chars) of a string.
*
* @param string String to calculate length of.
* @return string
*/
function strLength($s) {
return "char_length($s)";
}
/**
* @see DABLPDO::getIdMethod()
*/
protected function getIdMethod() {
return DABLPDO::ID_METHOD_SEQUENCE;
}
/**
* Gets ID for specified sequence name.
*/
function getId($table_name = null, $column_name = null) {
return $this->query("SELECT currval(pg_get_serial_sequence({$this->quote($table_name)}, {$this->quote($column_name)}))")->fetchColumn(0);
}
/**
* Returns timestamp formatter string for use in date() function.
* @return string
*/
function getTimestampFormatter() {
return "Y-m-d H:i:s O";
}
/**
* Returns timestamp formatter string for use in date() function.
* @return string
*/
function getTimeFormatter() {
return "H:i:s O";
}
/**
* @see DABLPDO::applyLimit()
*/
function applyLimit(&$sql, $offset, $limit) {
if ( $limit > 0 ) {
$sql .= " LIMIT ".$limit;
}
if ( $offset > 0 ) {
$sql .= " OFFSET ".$offset;
}
}
/**
* @see DABLPDO::random()
*/
function random($seed = NULL) {
return 'random()';
}
/**
* @return Database
*/
function getDatabaseSchema(){
$parser = new PgsqlSchemaParser($this);
$database = new Database($this->getDBName());
$database->setPlatform(new PgsqlPlatform($this));
$parser->parse($database);
$database->doFinalInitialization();
return $database;
}
/**
* Start transaction
*
* @return bool|void
*/
public function beginTransaction() {
if ($this->_transactionDepth == 0) {
parent::beginTransaction();
} else {
$this->exec("SAVEPOINT LEVEL{$this->_transactionDepth}");
}
$this->_transactionDepth++;
}
/**
* Commit current transaction
*
* @return bool|void
*/
public function commit() {
$this->_transactionDepth--;
if ($this->_transactionDepth == 0) {
parent::commit();
} else {
$this->exec("RELEASE SAVEPOINT LEVEL{$this->_transactionDepth}");
}
}
/**
* Rollback current transaction,
*
* @throws PDOException if there is no transaction started
* @return bool|void
*/
public function rollBack() {
if ($this->_transactionDepth == 0) {
throw new PDOException('Rollback error : There is no transaction started');
}
$this->_transactionDepth--;
if ($this->_transactionDepth == 0) {
parent::rollBack();
} else {
$this->exec("ROLLBACK TO SAVEPOINT LEVEL{$this->_transactionDepth}");
}
}
}