-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSqlCore.php
386 lines (283 loc) · 8.54 KB
/
SqlCore.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
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
<?php
require_once(dirname(dirname(__FILE__)).'/Config.php');
require_once "CoreLog.php";
require_once "Janitor.php";
class SqlCore {
private $connection;
private $stmt;
function __construct(){}
//CONNECTION FUNCTION
//LOGS IF ERRORS HAPPEN
private function createConnection(){
//CHECK IF CONNECTION IS CREATED YET
if($this->connection!==NULL){
if(@$this->connection->ping()){
return true;
}
}
$this->connection = mysqli_connect( Config::$DB_HOST, Config::$DB_USER, Config::$DB_PASS, Config::$DB_NAME);
if (mysqli_connect_error()){
CoreLog::add('SQLCore Connect Error (' . mysqli_connect_errno() . ') ' . mysqli_connect_error(), "sqlcore");
return false;
}
if ($this->connection == false){
Corelog::add("SQLCore Connection - createConnection Function", "sqlcore");
return false;
}
return true;
}
//TEST FUNCTION
public function test(){
if($this->createConnection()){
return true;
}
else{
return false;
}
}
//--------------------------------------
//MAIN QUERY EXECUTING FUNCTION
//USES A STATEMENT
//Replaces Variables With Bind Array Values
//All Bind Values Are Assumed As Strings
//--------------------------------------
private function exec_query($sql, $bind){
if(!$this->createConnection()){
Corelog::add("SQLCore Connection - exec_query Function", "sqlcore");
return false;
}
$conn = $this->connection;
$this->stmt = $conn->prepare($sql);
if($this->stmt==false){
Corelog::add("SQLCore Prepration - exec_query Function - ".$conn->error, "sqlcore");
return false;
}
//Loop Thru Bind Values
if(isset($bind) && $bind!==NULL){
$type = array(); $typeStrn = '';
for($i=1; $i<=count($bind); $i++){
//PREP BIND VALUES
$typeStrn .= 's';
}
$type[] = $typeStrn;
$params = array_merge($type, $bind);
$return = call_user_func_array(array($this->stmt, 'bind_param'), $this->makeReferences($params));
}
//Excute SQL Statement
$e = $this->stmt->execute();
$this->stmt->store_result();
if($e == false){
Corelog::add("SQLCore Execution - exec_query Function - ".$conn->error, "sqlcore");
return false;
}
return true;
}
private function makeReferences($arr){
$refs = array();
foreach($arr as $key => $value)
$refs[$key] = &$arr[$key];
return $refs;
}
//--------------------------------------
//SINGLE QUERY EXECUTING FUNCTION
//USES A STATEMENT
//Doesn't Use Bind Values
//--------------------------------------
private function exec_single_query($sql){
if(!$this->createConnection()){
Corelog::add("SQLCore Connection - exec_query Function", "sqlcore");
return false;
}
$conn = $this->connection;
$result = $conn->query($sql);
return $result;
}
//------------------------------
//FUNCTION USES EXEC_QUERY() FUNCTION
//TO GET ARRAY BACK FROM DATABASE
//------------------------------
public function query_array($sql, $bind = NULL){
if($bind==NULL){//SINGLE QUERY EXECUTE
$result = $this->exec_single_query($sql);
$returnArr = array();
if($result->num_rows > 0){
//APPEND TO NEW ARRAY
while($data = $result->fetch_assoc()){
array_push($returnArr, $data);
}
return $returnArr;
}
else{
return NULL;
}
}
else{
if(!$this->exec_query($sql, $bind)){
Corelog::add("SQLCore Query Failure - query_array Function", "sqlcore");
echo Janitor::build_json_alert('SQLCore Query Failure', 'Query Could Not Be Executed', 10, 2);
exit;
}
//CHECK IF ANY RESULTS
if($this->stmt->num_rows > 0){
//GET RESULT NAMES FOR BINDING DATA
$meta = $this->stmt->result_metadata();
while ($field = $meta->fetch_field()) {
$params[] = &$row[$field->name];
}
call_user_func_array(array($this->stmt, 'bind_result'), $params);
while ($this->stmt->fetch()) {
foreach ($row as $key => $val) {
$c[$key] = $val;
}
$result[] = $c;
}
$this->stmt->free_result();
return $result;
}
else{
return NULL;
}
}
}
//------------------------------
//FUNCTION USES EXEC_QUERY() FUNCTION
//TO GET NUMBER OF AFFECTED ROWS
//------------------------------
public function query_affect($sql, $bind = NULL){
if($bind==NULL){//SINGLE QUERY EXECUTE
$result = $this->exec_single_query($sql);
return $this->connection->affected_rows;
}
else{
if(!$this->exec_query($sql, $bind)){
Corelog::add("SQLCore Query Failure - query_affect Function", "sqlcore");
echo Janitor::build_json_alert('SQLCore Query Failure', 'Query Could Not Be Executed', 20, 2);
}
$rows = $this->stmt->affected_rows;
return $rows;
}
}
//------------------------------
//FUNCTION USES EXEC_QUERY() FUNCTION
//TO GET NUMBER OF SELECTED ROWS
//------------------------------
public function query_num($sql, $bind = NULL){
if($bind==NULL){//SINGLE QUERY EXECUTE
$result = $this->exec_single_query($sql);
return $result->num_rows;
}
else{
if(!$this->exec_query($sql, $bind)){
Corelog::add("SQLCore Query Failure - query_affect Function", "sqlcore");
echo Janitor::build_json_alert('SQLCore Query Failure', 'Query Could Not Be Executed', 30, 2);
}
$rows = $this->stmt->num_rows;
return $rows;
}
}
//------------------------------
//FUNCTION USES EXEC_QUERY() FUNCTION
//TO GET THE ID GENERATED FROM SQL
//------------------------------
public function query_id($sql, $bind = NULL){
if($bind==NULL){//SINGLE QUERY EXECUTE
$this->connection->exec_single_query($sql);
return $this->connection->insert_id;
}
else{
if(!$this->exec_query($sql, $bind)){
Corelog::add("SQLCore Query Failure - query_affect Function", "sqlcore");
echo Janitor::build_json_alert('SQLCore Query Failure', 'Query Could Not Be Executed', 40, 2);
}
$id = $this->stmt->insert_id;
return $id;
}
}
//-------------------------------
//USES QUERY_AFFECTION FUNCTION
//TO CHECK IF SQL AFFECTED WORKED
//---------------------------------
public function query_sql_impact($sql, $bind){
if($this->query_affect($sql, $bind) >= 1){
return true;
}
else{
return false;
}
}
/*-------------------------------------
FUNCTIONS USING SQL THAT ARE MOST OFTEN USED
REDUCES REWRITING SAME CODE
--------------------------------------*/
//RETURNS A STRUCTURE
//A SELECT SQL
public function structure_select($sql, $bind=NULL, $structure){
if($sql == NULL || $structure==NULL){
Corelog::add('Error 500: Vars Were Not Set - Backend Variables On Structure Select Were Not Set');
return Janitor::build_json_alert('Vars Were Not Set', 'Backend Variables On Structure Select Were Not Set', 500, 2);
exit;
}
$arr = $this->query_array($sql, $bind);
if($arr==NULL){
return '[]';
exit;
}
return Janitor::build_json_list($arr, $structure);
exit;
}
//RETURNS ARRAY DATA
//SELECT STATEMENT
public function array_select($sql, $bind=NULL){
if($sql == NULL){
Corelog::add('Error 501: Vars Were Not Set - Backend Variables On Array Select Were Not Set');
return Janitor::build_json_alert('Vars Were Not Set', 'Backend Variables On Array Select Were Not Set', 501, 2);
exit;
}
$arr = $this->query_array($sql, $bind);
return $arr;
}
//RETURNS NUMBER OF SELECT
//A SELECT SQL
public function number_select($sql, $bind=NULL){
if($sql == NULL){
Corelog::add('Error 502: Vars Were Not Set - Backend Variables On Number Select Were Not Set');
return Janitor::build_json_alert('Vars Were Not Set', 'Backend Variables On Number Select Were Not Set', 502, 2);
exit;
}
return $this->query_num($sql, $bind);
}
//RETURNS TRUE OR FALSE
//AN IMPACT SQL EITHER UPDATE, ADD, OR DELETE
public function impact_statement($sql, $bind=NULL){
if($sql == NULL){
Corelog::add('Error 503: Vars Were Not Set - Backend Variables On Impact Were Not Set');
return false;
exit;
}
if(!$this->query_sql_impact($sql, $bind)){
Corelog::add('Error 504: Impact Record Failed - SQL Failed To Impact With SQL');
return false;
exit;
}
return true;
}
//RETURNS ID OF INSERTED SQL
//FOR ADD SQLS
public function insert_id($sql, $bind=NULL){
if($sql == NULL){
Corelog::add('Error 505: Vars Were Not Set - Backend Variables On Impact Were Not Set');
return false;
exit;
}
$id = $this->query_id($sql, $bind);
if($id==''){
Corelog::add('Error 506: Impact Record Failed - SQL Failed To Impact With SQL');
return false;
exit;
}
return $id;
}
/*---------------------------------------
----------------------------------------*/
}
?>