-
Notifications
You must be signed in to change notification settings - Fork 1
/
DBOracle.php
194 lines (169 loc) · 4.04 KB
/
DBOracle.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
<?php
namespace Dabl\Adapter;
use Dabl\Adapter\Propel\Model\Database;
use Dabl\Adapter\Propel\Platform\OraclePlatform;
use Dabl\Adapter\Propel\Reverse\OracleSchemaParser;
use DateTimeZone;
use Exception;
use PDO;
use RuntimeException;
/**
* Oracle adapter.
*/
class DBOracle extends DABLPDO {
/**
* Returns SQL that converts a date value to the start of the hour
*
* @param string $date
* @return string
*/
function hourStart($date) {
return 'TRUNC(' . $date . ', \'HH\')';
}
/**
* Returns SQL that converts a date value to the start of the day
*
* @param string $date
* @return string
*/
function dayStart($date) {
return 'TO_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 'TRUNC(' . $date . ', \'DY\')';
}
/**
* Returns SQL that converts a date value to the first day of the month
*
* @param string $date
* @return string
*/
function monthStart($date) {
return 'TRUNC(' . $date . ', \'MONTH\')';
}
/**
* 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) {
throw new RuntimeException('Not implemented!');
if ($to_tz instanceof DateTimeZone) {
$to_tz = $to_tz->getName();
}
if ($from_tz instanceof DateTimeZone) {
$from_tz = $from_tz->getName();
}
return "NEW_TIME($date, '$from_tz', '$to_tz')";
}
/**
* 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 string $in The string whose case to ignore.
* @return string 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 "CONCAT($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 "SUBSTR($s, $pos, $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 "LENGTH($s)";
}
/**
* Returns SQL which limits the result set.
*
* @param string $sql
* @param int $offset
* @param int $limit
* @see DABLPDO::applyLimit()
*/
function applyLimit(&$sql, $offset, $limit) {
$max = $offset + $limit;
// nesting all queries, in case there's already a WHERE clause
$sql = <<<EOF
SELECT A.*, rownum AS PROPEL\$ROWNUM
FROM (
$sql
) A
WHERE rownum <= $max
EOF;
if ($offset > 0) {
$sql = <<<EOF
SELECT B.*
FROM (
$sql
) B
WHERE B.PROPEL\$ROWNUM > $offset
EOF;
}
}
protected function getIdMethod(){
return DABLPDO::ID_METHOD_SEQUENCE;
}
function getId($name = null){
if ($name === null) {
throw new Exception("Unable to fetch next sequence ID without sequence name.");
}
$stmt = $this->query("SELECT " . $name . ".nextval FROM dual");
$row = $stmt->fetch(PDO::FETCH_NUM);
return $row[0];
}
function random($seed=NULL){
return 'dbms_random.value';
}
/**
* @return Database
*/
function getDatabaseSchema(){
$parser = new OracleSchemaParser($this);
$database = new Database($this->getDBName());
$database->setPlatform(new OraclePlatform($this));
$parser->parse($database);
$database->doFinalInitialization();
return $database;
}
}