-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSQL.php
258 lines (221 loc) · 6.24 KB
/
SQL.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
<?php
/**
* @brief Verwaltet MySQL-Zugriffe
*/
class SQL
{
/** Datenbank-Handle */
/** @var mysqli|bool */
protected $dbHandle;
protected $log;
/**
* @var array
*/
private $debug = false;
/**
* @brief Initialisiere die MySQL-Klasse
*/
public function __construct()
{
$this->dbHandle = false;
if (defined('DEBUG_MODE') && DEBUG_MODE)
$this->debug = array();
}
/**
* @brief Holt / Erstellt eine aktuelle Instanz der Klasse
*/
public static function & current()
{
static $instance = null;
return $instance = (empty($instance)) ? new self() : $instance;
}
/**
* @brief Finalisiere die MySQL-Klasse
*/
public function __destruct()
{
$this->disconnect();
}
/**
* @brief Trennt Verbindung zur Datenbank
* @return bool
*/
public function disconnect(): bool
{
if ($this->dbHandle && @mysqli_close($this->dbHandle)) {
$this->dbHandle = false;
return true;
}
return false;
}
/**
* @brief Verbindung zur Datenbank
* @param $address string string IP-Adresse/Hostname des MySQL-Servers
* @param $user string string MySQL-Benutzername
* @param $pwd string string MySQL-Passwort
* @param $db string string MySQL-Datenbank
* @return bool
*/
public function connect($address, $user, $pwd, $db): bool
{
$this->dbHandle = @mysqli_connect($address, $user, $pwd);
if ($this->dbHandle) {
mysqli_set_charset($this->dbHandle, 'utf8');
return mysqli_select_db($this->dbHandle, $db);
}
return false;
}
/**
* @brief Gibt das Datenbank-Handle zurück, wenn verbunden
* @return bool
*/
public function isConnected()
{
return $this->dbHandle;
}
/**
* @brief Gibt die Anzahl der betroffenen Datensätze zurück
* @return int
*/
public function affectedRows(): int
{
return $this->dbHandle->affected_rows;
}
/**
* @brief Gibt die insertID der letzten Anfrage zurück
* @return mixed integer insertID der letzten Anfrage
*/
public function insertID()
{
return $this->dbHandle->insert_id;
}
/**
* @brief Gibt die zu erwartende insertID zurück
* @param $table string string MySQL-Tabelle
* @return int insertID der nächsten Anfrage
*/
public function nextInsertID($table): int
{
return 1 + $this->fetch("SELECT COUNT( LAST_INSERT_ID() ) AS `count` FROM `" . $db->escape($table) . '`', 'count');
}
/**
* @brief Führt eine Datenbank-Abfrage aus und ein Query->Fetch auf das Resultat;
* @param $query string Datenbank-Abfrage
* @param $specific string Tabellenfeld
* @return array Ergebnis der Abfrage
*/
function fetch($query, $specific = NULL)
{
$q = $this->query($query);
if ($q) {
return $q->fetch($specific);
}
return null;
}
/**
* @brief Führt eine Datenbank-Abfrage aus
* @param $query string Datenbank-Abfrage
* @return mixed true or false or resource or object
*/
public function query($query)
{
if (!$query) {
return false;
}
$return = false;
if (defined('DEBUG_MODE') && DEBUG_MODE) // Debug-Logs
{
$startTime = microtime(true);
}
$resource = mysqli_query($this->dbHandle, $query);
if (defined('DEBUG_MODE') && DEBUG_MODE) {
$endTime = microtime(true);
$elapsed = $endTime - $startTime;
$elapsed *= 1000;
$elapsed = number_format($elapsed, 5, '.', '') . 'µs';
}
// Rückgabewert deuten
if (is_object($resource)) {
// Resource (Standardfall SELECT): Neues Query-Objekt erzeugen
return new Query($resource);
}
if ($resource) {
// Ansonsten direkt Inhalt wiedergeben (true bei INSERT, UPDATE, usw)
return $resource;
}
// Nichts zurückgegeben? Anfrage fehlerhaft, gib Fehler aus
error_log($query . "\n" . $this->error());
return false;
}
/**
* @brief Hole Fehlermeldung der Datenbank
* @return string Fehlermeldung
*/
public function error(): string
{
return $this->dbHandle->error;
}
/**
* @brief Escaped einen String
* @param $string string Wert
* @return string Escapter Wert
*/
public function escape($string): string
{
return mysqli_real_escape_string($this->dbHandle, $string);
}
}
/**
* @brief Verkörpert das Ergebnis einer bestimmten Datenbankabfrage
*/
class Query
{
/** Datenbankabfrage */
/** @var mysqli_result */
protected $query;
/**
* @brief Initialisiere die Query-Klasse
* @param $query object Datenbankabfrage
*/
public function __construct($query)
{
$this->query = $query;
}
/**
* @brief Gibt die Anzahl der Zeilen der Abfrage zurück
* @return integer Anzahl der Datensätze
*/
public function numRows(): int
{
return $this->query->num_rows;
}
/**
* @brief Holt eine / alle Zeilen oder eine bestimmte Spalte einer Zeile
* @param $specific mixed Art der Rückgabe
* @return array Inhalt der Datensätze
*/
public function fetch($specific = NULL)
{
if (is_string($specific)) {
// Bestimmte Spalte der nächsten Zeile zurückgeben
$result = mysqli_fetch_assoc($this->query);
return $result[$specific];
} elseif (isset($specific)) {
// Gesamte nächste Zeile als assoziatives Array zurückgeben
return mysqli_fetch_assoc($this->query);
} else {
// Alle Zeilen als Array ausgeben (assoziative Arrays in numerischem Array)
$results = array();
for ($i = 0; $i < $this->query->num_rows; $i++)
$results[] = mysqli_fetch_assoc($this->query);
return $results;
}
}
/**
* @brief Finalisiere die MySQL-Klasse
*/
public function __destruct()
{
mysqli_free_result($this->query);
}
}