-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathSqlserver.php
More file actions
182 lines (153 loc) · 5.52 KB
/
Copy pathSqlserver.php
File metadata and controls
182 lines (153 loc) · 5.52 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
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
<?php
namespace Pecee\Pixie\QueryBuilder\Adapters;
use Pecee\Pixie\Exception;
use Pecee\Pixie\QueryBuilder\Raw;
/**
* Class Sqlserver
*
* @package Pecee\Pixie\QueryBuilder\Adapters
*/
class Sqlserver extends BaseAdapter
{
/**
* @var string
*/
public const SANITIZER = '';
/**
* @var string
*/
protected const QUERY_PART_FETCH_NEXT = 'FETCH NEXT';
/**
* @var string
*/
protected const QUERY_PART_TOP = 'TOP';
/**
* Overridden method for SQL SERVER correct usage of: OFFSET x ROWS FETCH NEXT y ROWS ONLY
* @param string $section
* @param array $statements
* @param array $bindings
* @return string
* @throws Exception
*/
protected function buildQueryPart(string $section, array $statements, array &$bindings): string
{
switch ($section) {
case static::QUERY_PART_TOP:
return isset($statements['limit']) ? 'TOP ' . $statements['limit'] : '';
case static::QUERY_PART_OFFSET:
return isset($statements['offset']) ? 'OFFSET '.$statements['offset'].' ROWS' : '';
case static::QUERY_PART_FETCH_NEXT:
return isset($statements['fetch_next']) ? 'FETCH NEXT '.$statements['fetch_next'].' ROWS ONLY' : '';
default:
return parent::buildQueryPart($section, $statements, $bindings);
}
}
/**
* Build select query string and bindings
*
* @param array $statements
*
* @throws Exception
* @return array
*/
public function select(array $statements): array
{
$bindings = [];
$hasDistincts = $this->setSelectStatement($statements, $bindings);
// From
$fromEnabled = false;
$tables = '';
if (isset($statements['tables']) === true) {
$tablesFound = [];
foreach ((array)$statements['tables'] as $table) {
if ($table instanceof Raw) {
$t = $table;
} else {
$prefix = $statements['aliases'][$table] ?? null;
if ($prefix !== null) {
$t = sprintf('%s AS %s', $table, $prefix);
} else {
$t = sprintf('%s', $table);
}
}
$tablesFound[] = $t;
}
$tables = implode(',', $tablesFound);
$fromEnabled = true;
}
// WHERE
[$whereCriteria, $whereBindings] = $this->buildCriteriaWithType($statements, 'wheres', 'WHERE');
// HAVING
[$havingCriteria, $havingBindings] = $this->buildCriteriaWithType($statements, 'havings', 'HAVING');
$sql = $this->concatenateQuery([
'SELECT' . ($hasDistincts === true ? ' DISTINCT' : ''),
$this->buildQueryPart(static::QUERY_PART_TOP, $statements, $bindings),
$this->arrayStr($statements['selects'], ', '),
$fromEnabled ? 'FROM' : '',
$tables,
$this->buildQueryPart(static::QUERY_PART_JOIN, $statements, $bindings),
$whereCriteria,
$this->buildQueryPart(static::QUERY_PART_GROUPBY, $statements, $bindings),
$havingCriteria,
$this->buildQueryPart(static::QUERY_PART_ORDERBY, $statements, $bindings),
$this->buildQueryPart(static::QUERY_PART_OFFSET, $statements, $bindings),
$this->buildQueryPart(static::QUERY_PART_FETCH_NEXT, $statements, $bindings),
]);
$sql = $this->buildUnion($statements, $sql);
$bindings = array_merge(
$bindings,
$whereBindings,
$havingBindings
);
return compact('sql', 'bindings');
}
/**
* Build delete query
*
* @param array $statements
* @param array|null $columns
*
* @return array
* @throws Exception
*/
public function delete(array $statements, array $columns = null): array
{
$table = end($statements['tables']);
$columnsQuery = '';
if($columns !== null) {
$columnsQuery = $this->arrayStr($columns);
}
// WHERE
[$whereCriteria, $bindings] = $this->buildCriteriaWithType($statements, 'wheres', 'WHERE');
$sql = $this->concatenateQuery([
'DELETE ',
$columnsQuery,
' FROM',
$this->wrapSanitizer($table),
$this->buildQueryPart(static::QUERY_PART_JOIN, $statements, $bindings),
$whereCriteria,
$this->buildQueryPart(static::QUERY_PART_GROUPBY, $statements, $bindings),
$this->buildQueryPart(static::QUERY_PART_ORDERBY, $statements, $bindings),
$this->buildQueryPart(static::QUERY_PART_OFFSET, $statements, $bindings),
]);
return compact('sql', 'bindings');
}
public function wrapSanitizer($value)
{
// Its a raw query, just cast as string, object has __toString()
if ($value instanceof Raw) {
return (string)$value;
}
if ($value instanceof \Closure) {
return $value;
}
// Separate our table and fields which are joined with a ".", like my_table.id
$valueArr = explode('.', $value, 2);
foreach ($valueArr as $key => $subValue) {
// Don't wrap if we have *, which is not a usual field
$valueArr[$key] = trim($subValue) === '*' ? $subValue : '[' . $subValue . ']';
}
// Join these back with "." and return
return implode('.', $valueArr);
}
}