-
Notifications
You must be signed in to change notification settings - Fork 1
/
database.inc.php
executable file
·496 lines (451 loc) · 12.7 KB
/
database.inc.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
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
<?php
#**************************************************************************
# openSIS is a free student information system for public and non-public
# schools from Open Solutions for Education, Inc. web: www.os4ed.com
#
# openSIS is web-based, open source, and comes packed with features that
# include student demographic info, scheduling, grade book, attendance,
# report cards, eligibility, transcripts, parent portal,
# student portal and more.
#
# Visit the openSIS web site at http://www.opensis.com to learn more.
# If you have question regarding this system or the license, please send
# an email to info@os4ed.com.
#
# This program is released under the terms of the GNU General Public License as
# published by the Free Software Foundation, version 2 of the License.
# See license.txt.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
#***************************************************************************************
// Establish MySQL DB connection.
include('Redirect_root.php');
function db_start()
{ global $DatabaseServer,$DatabaseUsername,$DatabasePassword,$DatabaseName,$DatabasePort,$DatabaseType;
switch($DatabaseType)
{
case 'mysql':
$connection = mysql_connect($DatabaseServer,$DatabaseUsername,$DatabasePassword);
mysql_select_db($DatabaseName);
break;
}
// Error code for both.
if($connection === false)
{
switch($DatabaseType)
{
case 'mysql':
$errormessage = mysql_error($connection);
break;
}
db_show_error("","Could not Connect to Database: $DatabaseServer",$errstring);
}
return $connection;
}
// This function connects, and does the passed query, then returns a connection identifier.
// Not receiving the return == unusable search.
// ie, $processable_results = DBQuery("select * from students");
function DBQuery($sql)
{ global $DatabaseType,$_openSIS;
$connection = db_start();
switch($DatabaseType)
{
case 'mysql':
$sql = str_replace('&', "", $sql);
$sql = str_replace('"', "", $sql);
$sql = str_replace(''', "", $sql);
$sql = str_replace('<', "", $sql);
$sql = str_replace('>', "", $sql);
$sql = ereg_replace("([,\(=])[\r\n\t ]*''",'\\1NULL',$sql);
if(preg_match_all("/'(\d\d-[A-Za-z]{3}-\d{2,4})'/",$sql,$matches))
{
foreach($matches[1] as $match)
{
$dt = date('Y-m-d',strtotime($match));
$sql = preg_replace("/'$match'/","'$dt'",$sql);
}
}
if(substr($sql,0,6)=="BEGIN;")
{
$array = explode( ";", $sql );
foreach( $array as $value )
{
if($value!="")
{
$result = mysql_query($value);
if(!$result)
{
mysql_query("ROLLBACK");
die(db_show_error($sql,"DB Execute Failed.",mysql_error()));
}
}
}
}
else
{
$result = mysql_query($sql) or die(db_show_error($sql,"DB Execute Failed.",mysql_error()));
}
break;
}
return $result;
}
function DBQueryMod($sql)
{ global $DatabaseType,$_openSIS;
$connection = db_start();
switch($DatabaseType)
{
case 'mysql':
$sql = str_replace('&', "", $sql);
$sql = str_replace('"', "", $sql);
$sql = str_replace(''', "", $sql);
$sql = str_replace('<', "", $sql);
$sql = str_replace('>', "", $sql);
// $sql = ereg_replace("([,\(=])[\r\n\t ]*''",'\\1NULL',$sql);
if(preg_match_all("/'(\d\d-[A-Za-z]{3}-\d{2,4})'/",$sql,$matches))
{
foreach($matches[1] as $match)
{
$dt = date('Y-m-d',strtotime($match));
$sql = preg_replace("/'$match'/","'$dt'",$sql);
}
}
if(substr($sql,0,6)=="BEGIN;")
{
$array = explode( ";", $sql );
foreach( $array as $value )
{
if($value!="")
{
$result = mysql_query($value);
if(!$result)
{
mysql_query("ROLLBACK");
die(db_show_error($sql,"DB Execute Failed.",mysql_error()));
}
}
}
}
else
{
$result = mysql_query($sql) or die(db_show_error($sql,"DB Execute Failed.",mysql_error()));
}
break;
}
return $result;
}
// return next row.
function db_fetch_row($result)
{ global $DatabaseType;
switch($DatabaseType)
{
case 'mysql':
$return = mysql_fetch_array($result);
if(is_array($return))
{
foreach($return as $key => $value)
{
if(is_int($key))
unset($return[$key]);
}
}
break;
}
return @array_change_key_case($return,CASE_UPPER);
}
// returns code to go into SQL statement for accessing the next value of a sequence function db_seq_nextval($seqname)
function db_seq_nextval($seqname)
{ global $DatabaseType;
if($DatabaseType=='mysql')
$seq="fn_".strtolower($seqname)."()";
return $seq;
}
// start transaction
/*
function db_trans_start($connection)
{ global $DatabaseType;
if($DatabaseType=='postres')
db_trans_query($connection,"BEGIN WORK");
}
*/
// run query on transaction -- if failure, runs rollback.
/*
function db_trans_query($connection,$sql)
{ global $DatabaseType;
if($DatabaseType=='oracle')
{
$parse = ociparse($connection,$sql);
if($parse===false)
{
db_trans_rollback($connection);
db_show_error($sql,"DB Transaction Parse Failed.");
}
$result=OciExecute($parse,OCI_DEFAULT);
if ($result===false)
{
db_trans_rollback($connection);
db_show_error($sql,"DB Transaction Execute Failed.");
}
$result=$parse;
}
elseif($DatabaseType=='postgres')
{
$sql = ereg_replace("([,\(=])[\r\n\t ]*''",'\\1NULL',$sql);
$result = pg_query($connection,$sql);
if($result===false)
{
db_trans_rollback($connection);
db_show_error($sql,"DB Transaction Execute Failed.");
}
}
return $result;
}
*/
// rollback commands.
/*
function db_trans_rollback($connection)
{ global $DatabaseType;
if($DatabaseType=='oracle')
OCIRollback($connection);
elseif($DatabaseType=='postgres')
pg_query($connection,"ROLLBACK");
}
*/
// commit changes.
/*
function db_trans_commit($connection)
{ global $DatabaseType;
if($DatabaseType=='oracle')
OCICommit($connection);
elseif($DatabaseType=='postgres')
pg_query($connection,"COMMIT");
}
*/
// keyword mapping.
/*
if($DatabaseType=='oracle')
define("FROM_DUAL"," FROM DUAL ");
else
define("FROM_DUAL"," ");
*/
// DECODE and CASE-WHEN support
function db_case($array)
{ global $DatabaseType;
$counter=0;
if($DatabaseType=='mysql')
{
$array_count=count($array);
$string = " CASE WHEN $array[0] =";
$counter++;
$arr_count = count($array);
for($i=1;$i<$arr_count;$i++)
{
$value = $array[$i];
if($value=="''" && substr($string,-1)=='=')
{
$value = ' IS NULL';
$string = substr($string,0,-1);
}
$string.="$value";
if($counter==($array_count-2) && $array_count%2==0)
$string.=" ELSE ";
elseif($counter==($array_count-1))
$string.=" END ";
elseif($counter%2==0)
$string.=" WHEN $array[0]=";
elseif($counter%2==1)
$string.=" THEN ";
$counter++;
}
}
/*
else
{
$string=" decode( ";
foreach($array as $value)
$string.="$value,";
$string[strlen($string)-1]=")";
$string.=" ";
}
*/
return $string;
}
// String position.
/*
function db_strpos($args)
{ global $DatabaseType;
if($DatabaseType=='postgres')
$ret = 'strpos(';
else
$ret = 'instr(';
foreach($args as $value)
$ret .= $value . ',';
$ret = substr($ret,0,-1) . ')';
return $ret;
}
*/
// CONVERT VARCHAR TO NUMERIC
/*
function db_to_number($text)
{ global $DatabaseType;
if($DatabaseType=='postgres')
return '('.$text.')::text::float::numeric';
else
return 'to_number('.$text.')';
}
*/
// returns an array with the field names for the specified table as key with subkeys
// of SIZE, TYPE, SCALE and NULL. TYPE: varchar, numeric, etc.
function db_properties($table)
{ global $DatabaseType,$DatabaseUsername;
switch($DatabaseType)
{
case 'mysql':
$result = DBQuery("SHOW COLUMNS FROM $table");
while($row = db_fetch_row($result))
{
$properties[strtoupper($row['FIELD'])]['TYPE'] = strtoupper($row['TYPE'],strpos($row['TYPE'],'('));
if(!$pos = strpos($row['TYPE'],','))
$pos = strpos($row['TYPE'],')');
else
$properties[strtoupper($row['FIELD'])]['SCALE'] = substr($row['TYPE'],$pos+1);
$properties[strtoupper($row['FIELD'])]['SIZE'] = substr($row['TYPE'],strpos($row['TYPE'],'(')+1,$pos);
if($row['NULL']!='')
$properties[strtoupper($row['FIELD'])]['NULL'] = "Y";
else
$properties[strtoupper($row['FIELD'])]['NULL'] = "N";
}
break;
}
return $properties;
}
function db_show_error($sql,$failnote,$additional='')
{ global $openSISTitle,$openSISVersion,$openSISNotifyAddress;
PopTable('header','Error');
$tb = debug_backtrace();
$error = $tb[1]['file'] . " at " . $tb[1]['line'];
echo "
<TABLE CELLSPACING=10 BORDER=0>
<TD align=right><b>Date:</TD>
<TD><pre>".date("m/d/Y h:i:s")."</pre></TD>
</TR><TR>
<TD align=right><b>Failure Notice:</b></TD>
<TD><pre> $failnote </pre></TD>
</TR><TR>
<TD align=right><b>SQL:</b></TD>
<TD>$sql</TD>
</TR>
</TR><TR>
<TD align=right><b>Traceback:</b></TD>
<TD>$error</TD>
</TR>
</TR><TR>
<TD align=right><b>Additional Information:</b></TD>
<TD>$additional</TD>
</TR>
</TABLE>";
/*echo "
<TABLE CELLSPACING=10 BORDER=0>
<TR><TD align=right><b>Date:</TD>
<TD><pre>".date("m/d/Y h:i:s")."</pre></TD>
</TR><TR>
<TD align=right></TD>
<TD>openSIS has encountered an error that could have resulted from any of the following:
<br/>
<ul>
<li>Invalid data input</li>
<li>Database SQL error</li>
<li>Program error</li>
</ul>
Please take this screen shot and send it to your openSIS representative for debugging and resolution.
</TD>
</TR>
</TABLE>";*/
//Something you have asked the system to do has thrown a database error. A system administrator has been notified, and the problem will be fixed as soon as possible. It might be that changing the input parameters sent to this program will cause it to run properly. Thanks for your patience.
PopTable('footer');
echo "<!-- SQL STATEMENT: \n\n $sql \n\n -->";
/*if(false && function_exists('mysql_query'))
{
$link = @mysql_connect('os4ed.com','openSIS_log','openSIS_log');
@mysql_select_db('openSIS_log');
@mysql_query("INSERT INTO SQL_ERROR_LOG (HOST_NAME,IP_ADDRESS,LOGIN_DATE,VERSION,PHP_SELF,DOCUMENT_ROOT,SCRIPT_NAME,MODNAME,USERNAME,SQL,REQUEST) values('$_SERVER[SERVER_NAME]','$_SERVER[SERVER_ADDR]','".date('Y-m-d')."','$openSISVersion','$_SERVER[PHP_SELF]','$_SERVER[DOCUMENT_ROOT]','$_SERVER[SCRIPT_NAME]','$_REQUEST[modname]','".User('USERNAME')."','$sql','".ShowVar($_REQUEST,'Y', 'N')."')");
@mysql_close($link);
}*/
if($openSISNotifyAddress)
{
$message = "System: $openSISTitle \n";
$message .= "Date: ".date("m/d/Y h:i:s")."\n";
$message .= "Page: ".$_SERVER['PHP_SELF'].' '.ProgramTitle()." \n\n";
$message .= "Failure Notice: $failnote \n";
$message .= "Additional Info: $additional \n";
$message .= "\n $sql \n";
$message .= "Request Array: \n".ShowVar($_REQUEST,'Y', 'N');
$message .= "\n\nSession Array: \n".ShowVar($_SESSION,'Y', 'N');
mail($openSISNotifyAddress,'openSIS Database Error',$message);
}
die();
}
/*
function Version()
{
$query = DBQuery("select value from app where name='version'");
$sql = mysql_fetch_assoc($query);
return($sql['value']);
}
function BuildDate()
{
$query = DBQuery("select value from app where name='build'");
$build = mysql_fetch_assoc($query);
$month = substr($build['value'],0,-9);
$day = substr($build['value'],2,-7);
$year = substr($build['value'],4,-3);
switch($month)
{
case '01':
$month = 'January';
break;
case '02':
$month = 'February';
break;
case '03':
$month = 'March';
break;
case '04':
$month = 'April';
break;
case '05':
$month = 'May';
break;
case '06':
$month = 'June';
break;
case '07':
$month = 'July';
break;
case '08':
$month = 'August';
break;
case '09':
$month = 'September';
break;
case '10':
$month = 'October';
break;
case '11':
$month = 'November';
break;
case '12':
$month = 'December';
break;
}
$build_date = $month.' '.$day.', '.$year;
return($build_date);
}
*/
?>