-
Notifications
You must be signed in to change notification settings - Fork 1
/
DBSQLite.php
167 lines (149 loc) · 3.98 KB
/
DBSQLite.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
<?php
namespace Dabl\Adapter;
use Dabl\Adapter\Propel\Model\Database;
use Dabl\Adapter\Propel\Platform\SqlitePlatform;
use Dabl\Adapter\Propel\Reverse\SqliteSchemaParser;
use DateTimeZone;
/**
* This is used in order to connect to a SQLite database.
*/
class DBSQLite extends DABLPDO {
/**
* Returns SQL that converts a date value to the start of the hour
*
* @param string $date
* @return string
*/
function hourStart($date) {
return "datetime($date, '-' || STRFTIME('%M', $date) || ' minutes', '-' || STRFTIME('%S', $date) || ' seconds')";
}
/**
* Returns SQL that converts a date value to the start of the day
*
* @param string $date
* @return string
*/
function dayStart($date) {
return "DATE($date, 'start of day')";
}
/**
* Returns SQL that converts a date value to the first day of the week
*
* @param string $date
* @return string
*/
function weekStart($date) {
return "CASE DATE($date, 'weekday 0') "
. "WHEN DATE($date) THEN DATE($date) "
. "ELSE DATE($date, 'weekday 0', '-7 days') "
. "END";
}
/**
* Returns SQL that converts a date value to the first day of the month
*
* @param string $date
* @return string
*/
function monthStart($date) {
return "DATE($date, 'start of 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) {
return "DATETIME($date)";
// if ($to_tz instanceof DateTimeZone) {
// $to_tz = $to_tz->getName();
// }
// if ($from_tz instanceof DateTimeZone) {
// $from_tz = $from_tz->getName();
// }
// return "DATETIME($date, '$to_tz')";
}
/**
* For SQLite this method has no effect, since SQLite doesn't support specifying a character
* set (or, another way to look at it, it doesn't require a single character set per DB).
*
* @param string The charset encoding.
* @throws Exception If the specified charset doesn't match sqlite_libencoding()
*/
function setCharset($charset) {
}
/**
* 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 "($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)";
}
/**
* @see DABLPDO::applyLimit()
*/
function applyLimit(&$sql, $offset, $limit) {
if ($limit > 0) {
$sql .= " LIMIT " . $limit . ($offset > 0 ? " OFFSET " . $offset : "");
} elseif ($offset > 0) {
$sql .= " LIMIT -1 OFFSET " . $offset;
}
}
function random($seed = NULL) {
return 'random()';
}
/**
* @return Database
*/
function getDatabaseSchema() {
$parser = new SqliteSchemaParser($this);
$database = new Database($this->getDBName());
$database->setPlatform(new SqlitePlatform($this));
$parser->parse($database);
$database->doFinalInitialization();
return $database;
}
}