-
Notifications
You must be signed in to change notification settings - Fork 1
/
DBAccess.php
220 lines (195 loc) · 5.04 KB
/
DBAccess.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
<?php
namespace Dabl\Adapter;
use Dabl\Adapter\Propel\Model\Database;
use Dabl\Adapter\Propel\Platform\AccessPlatform;
use Dabl\Adapter\Propel\Reverse\AccessSchemaParser;
use DateTimeZone;
use RuntimeException;
/**
* This is used in order to connect to a Microsoft Access database.
*/
class DBAccess extends DABLPDO {
/**
* Returns SQL that converts a date value to the start of the hour
*
* @param string $date
* @return string
*/
function hourStart($date) {
throw new RuntimeException('Not implemented!');
}
/**
* Returns SQL that converts a date value to the start of the day
*
* @param string $date
* @return string
*/
function dayStart($date) {
throw new RuntimeException('Not implemented!');
}
/**
* Returns SQL that converts a date value to the first day of the week
*
* @param string $date
* @return string
*/
function weekStart($date) {
throw new RuntimeException('Not implemented!');
}
/**
* Returns SQL that converts a date value to the first day of the month
*
* @param string $date
* @return string
*/
function monthStart($date) {
throw new RuntimeException('Not implemented!');
}
/**
* 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 instanceof DateTimeZone) {
$from_tz = $from_tz->getName();
}
throw new RuntimeException('Not implemented!');
}
/**
* This method is used to ignore case.
*
* @param in The string to transform to upper case.
* @return 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 "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 "SUBSTRING($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 "CHAR_LENGTH($s)";
}
/**
* Locks the specified table.
*
* @param string $table The name of the table to lock.
* @throws PDOException No Statement could be created or
* executed.
*/
function lockTable($table){
$this->exec("LOCK TABLE " . $table . " WRITE");
}
/**
* Unlocks the specified table.
*
* @param string $table The name of the table to unlock.
* @throws PDOException No Statement could be created or
* executed.
*/
function unlockTable($table){
$this->exec("UNLOCK TABLES");
}
/**
* @see DABLPDO::quoteIdentifier()
*/
function quoteIdentifier($text, $force = false) {
if (is_array($text)) {
return array_map(array($this, 'quoteIdentifier'), $text);
}
if (!$force) {
if (strpos($text, '[') !== false || strpos($text, ' ') !== false || strpos($text, '(') !== false || strpos($text, '*') !== false) {
return $text;
}
}
return '[' . str_replace('.', '].[', $text) . ']';
}
/**
* @see DABLPDO::useQuoteIdentifier()
*/
function useQuoteIdentifier(){
return true;
}
/**
* @see DABLPDO::applyLimit()
*/
function applyLimit(&$sql, $offset, $limit){
if ( $limit > 0 ) {
$sql .= " LIMIT " . ($offset > 0 ? $offset . ", " : "") . $limit;
} else if ( $offset > 0 ) {
$sql .= " LIMIT " . $offset . ", 18446744073709551615";
}
}
/**
* @see DABLPDO::random()
*/
function random($seed = null){
return 'rand('.((int) $seed).')';
}
/**
* Convert $field to the format given in $format.
*
* @see DABLPDO::dateFormat
* @param string $field This will *not* be quoted
* @param string $format Date format
* @param string $alias Alias for the new field - WILL be quoted, if provided
* @return string
*/
function dateFormat($field, $format, $alias = null) {
$alias = $alias ? " AS " . $this->quoteIdentifier($alias, true) : '';
return "DATE_FORMAT({$field}, '{$format}'){$alias}";
}
/**
* @return Database
*/
function getDatabaseSchema(){
$parser = new AccessSchemaParser($this);
$database = new Database($this->getDBName());
$platform = new AccessPlatform($this);
$platform->setDefaultTableEngine('InnoDB');
$database->setPlatform($platform);
$parser->parse($database);
$database->doFinalInitialization();
return $database;
}
}