-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSDE.php
299 lines (264 loc) · 6.83 KB
/
SDE.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
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
<?php
/**
* Project: S Database Explorer (SDE)
* Description: S Database Explorer (SDE) is a simple and lightweight MySQL database explorer library based on PHP and PDO.
* Version: 3.0.1
* Version Code: 4
* Since: 1.0.0
* Author: Md. Ashraful Alam Shemul
* Email: [email protected]
* Website: https://www.stechbd.net/project/SDE/
* Developer: S Technologies
* Homepage: https://www.stechbd.net
* Contact: [email protected]
* Created: August 14, 2015
* Modified: August 15, 2023
*/
namespace STechBD;
use PDO;
use PDOException;
use PDOStatement;
use JsonException;
/**
* The main class of S Database Explorer.
*
* @since 1.0.0
*/
class SDE
{
private PDO $connection;
private string $prefix = '';
/**
* The construction method to load PDO.
*
* @param string $name
* @param string $username
* @param string $password
* @param string $host
* @param false|string $prefix
*
* @since 1.0.0
*/
public function __construct(string $name, string $username = 'root', string $password = '', string $host = 'localhost', false|string $prefix = false)
{
try {
$this->connection = new PDO("mysql:host=$host;dbname=$name;", $username, $password);
$this->connection->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
$this->connection->setAttribute(PDO::ATTR_DEFAULT_FETCH_MODE, PDO::FETCH_ASSOC);
if ($prefix) {
$this->prefix = $prefix . '_';
}
} catch (PDOException $e) {
throw new PDOException($e->getMessage());
}
}
/**
* Method to insert a row in a Database Table.
*
* @param string $table
* @param string $column
* @param string $values
* @param array $parameters
*
* @return false|PDOStatement
* @throws PDOException
* @since 1.0.0
*/
public function insert(string $table, string $column, string $values, array $parameters = []): false|PDOStatement
{
try {
$statement = 'INSERT INTO `' . $this->prefix . $table . '` (' . $column . ') VALUES (' . $values . ')';
$this->executeStatement($statement, $parameters);
return $this->last();
} catch (PDOException $e) {
throw new PDOException($e->getMessage());
}
}
/**
* Method to select row(s) from a Database Table.
*
* @param string $column
* @param string $table
* @param bool|string $condition
* @param bool $limit
* @param string|bool $order
* @param false|string $offset
* @param array $parameters
*
* @return array|false
* @since 1.0.0
*/
public function select(string $column, string $table, false|string $condition = false, false|string $limit = false, false|string $order = false, false|string $offset = false, array $parameters = []): false|array
{
try {
$statement = 'SELECT ' . $column . ' FROM `' . $this->prefix . $table . '`';
if ($condition) {
$statement .= ' WHERE ' . $condition;
}
if ($limit) {
$statement .= ' LIMIT ' . $limit;
}
if ($order) {
$statement .= ' ORDER BY ' . $condition;
}
if ($offset) {
$statement .= ' OFFSET ' . $offset;
}
return $this->executeStatement($statement, $parameters)->fetchAll();
} catch (PDOException $e) {
throw new PDOException($e->getMessage());
}
}
/**
* Method to update a row in a Database Table.
*
* @param string $table
* @param string $set
* @param string $condition
* @param array $parameters
*
* @return void
* @throws PDOException
* @since 1.0.0
*/
public function update(string $table, string $set, string $condition, array $parameters = []): void
{
try {
$statement = 'UPDATE ' . $this->prefix . $table . ' SET ' . $set . ' WHERE ' . $condition;
$this->executeStatement($statement, $parameters);
} catch (PDOException $e) {
throw new PDOException($e->getMessage());
}
}
/**
* Method to remove a row from a Database Table.
*
* @param string $table
* @param string $condition
* @param array $parameters
*
* @return false|PDOStatement
* @throws PDOException
* @since 1.0.0
*/
public function remove(string $table, string $condition, array $parameters = []): false|PDOStatement
{
try {
$statement = 'DELETE FROM ' . $this->prefix . $table . ' WHERE ' . $condition;
return $this->executeStatement($statement, $parameters);
} catch (PDOException $e) {
throw new PDOException($e->getMessage());
}
}
/**
* Method to run a custom query.
*
* @param string $statement
* @param array $parameters
*
* @return false|PDOStatement
* @throws PDOException
* @since 3.0.0
*/
public function run(string $statement, array $parameters = []): false|PDOStatement
{
try {
return $this->executeStatement($statement, $parameters);
} catch (PDOException $e) {
throw new PDOException($e->getMessage());
}
}
/**
* Method to collect JSON output from a query.
*
* @param array $array
*
* @return string|false
* @throws JsonException
* @since 3.0.0
*/
public function json(array $array): false|string
{
return json_encode($array, JSON_THROW_ON_ERROR);
}
/**
* Method to get the last inserted ID.
*
* @return string
* @since 3.0.0
*/
public function last(): string
{
return $this->connection->lastInsertId();
}
/**
* Method to get the number of row(s).
* @param string $table
* @param string $condition
* @param array $parameters
*
* @return int
* @throws PDOException
* @since 3.0.0
*/
public function count(string $table, string $condition = '', array $parameters = []): int
{
try {
$statement = 'SELECT COUNT(*) FROM ' . $this->prefix . $table;
if ($condition) {
$statement .= ' WHERE ' . $condition;
}
$stmt = $this->connection->prepare($statement);
$stmt->execute($parameters);
return $stmt->fetchColumn();
} catch (PDOException $e) {
throw new PDOException($e->getMessage());
}
}
/**
* Method to get the summation of a column.
*
* @param string $table
* @param string $column
* @param string $condition
* @param array $parameters
*
* @return int
* @throws PDOException
* @since 3.0.0
*/
public function sum(string $table, string $column, string $condition = '', array $parameters = []): int
{
try {
$statement = 'SELECT SUM(' . $column . ') FROM ' . $this->prefix . $table;
if ($condition) {
$statement .= ' WHERE ' . $condition;
}
$stmt = $this->connection->prepare($statement);
$stmt->execute($parameters);
return $stmt->fetchColumn();
} catch (PDOException $e) {
throw new PDOException($e->getMessage());
}
}
/**
* Method to execute a statement. This method is used internally.
*
* @param string $statement
* @param array $parameters
*
* @return false|PDOStatement
* @throws PDOException
* @since 3.0.0
*/
private function executeStatement(string $statement, array $parameters = []): false|PDOStatement
{
try {
$stmt = $this->connection->prepare($statement);
$stmt->execute($parameters);
return $stmt;
} catch (PDOException $e) {
throw new PDOException($e->getMessage());
}
}
}