1 |
6daefa8c
|
Petr Lukašík
|
<?php
|
2 |
|
|
|
3 |
|
|
/**
|
4 |
|
|
* Overrides default ADODB error handler to provide nicer error handling.
|
5 |
|
|
*
|
6 |
|
|
* $Id: errorhandler.inc.php,v 1.20 2005/11/13 08:39:49 chriskl Exp $
|
7 |
|
|
*/
|
8 |
|
|
|
9 |
|
|
define('ADODB_ERROR_HANDLER','Error_Handler');
|
10 |
|
|
|
11 |
|
|
/**
|
12 |
|
|
* Default Error Handler. This will be called with the following params
|
13 |
|
|
*
|
14 |
|
|
* @param $dbms the RDBMS you are connecting to
|
15 |
|
|
* @param $fn the name of the calling function (in uppercase)
|
16 |
|
|
* @param $errno the native error number from the database
|
17 |
|
|
* @param $errmsg the native error msg from the database
|
18 |
|
|
* @param $p1 $fn specific parameter - see below
|
19 |
|
|
* @param $P2 $fn specific parameter - see below
|
20 |
|
|
*/
|
21 |
|
|
function Error_Handler($dbms, $fn, $errno, $errmsg, $p1=false, $p2=false)
|
22 |
|
|
{
|
23 |
|
|
global $lang, $conf;
|
24 |
|
|
global $misc, $appName, $appVersion, $appLangFiles;
|
25 |
|
|
|
26 |
|
|
switch($fn) {
|
27 |
|
|
case 'EXECUTE':
|
28 |
|
|
$sql = $p1;
|
29 |
|
|
$inputparams = $p2;
|
30 |
|
|
|
31 |
|
|
$s = "<p><b>{$lang['strsqlerror']}</b><br />" . $misc->printVal($errmsg) . "</p>
|
32 |
|
|
<p><b>{$lang['strinstatement']}</b><br />" . $misc->printVal($sql) . "</p>
|
33 |
|
|
";
|
34 |
|
|
echo "<table class=\"error\" cellpadding=\"5\"><tr><td>{$s}</td></tr></table><br />\n";
|
35 |
|
|
|
36 |
|
|
break;
|
37 |
|
|
|
38 |
|
|
case 'PCONNECT':
|
39 |
|
|
case 'CONNECT':
|
40 |
|
|
$_failed = true;
|
41 |
|
|
global $_reload_browser;
|
42 |
|
|
$_reload_browser = true;
|
43 |
|
|
unset($_SESSION['sharedUsername']);
|
44 |
|
|
unset($_SESSION['sharedPassword']);
|
45 |
|
|
unset($_SESSION['webdbLogin'][$_REQUEST['server']]);
|
46 |
|
|
$msg = $lang['strloginfailed'];
|
47 |
|
|
include('./login.php');
|
48 |
|
|
exit;
|
49 |
|
|
break;
|
50 |
|
|
default:
|
51 |
|
|
$s = "$dbms error: [$errno: $errmsg] in $fn($p1, $p2)\n";
|
52 |
|
|
echo "<table class=\"error\" cellpadding=\"5\"><tr><td>{$s}</td></tr></table><br />\n";
|
53 |
|
|
break;
|
54 |
|
|
}
|
55 |
|
|
/*
|
56 |
|
|
* Log connection error somewhere
|
57 |
|
|
* 0 message is sent to PHP's system logger, using the Operating System's system
|
58 |
|
|
* logging mechanism or a file, depending on what the error_log configuration
|
59 |
|
|
* directive is set to.
|
60 |
|
|
* 1 message is sent by email to the address in the destination parameter.
|
61 |
|
|
* This is the only message type where the fourth parameter, extra_headers is used.
|
62 |
|
|
* This message type uses the same internal function as mail() does.
|
63 |
|
|
* 2 message is sent through the PHP debugging connection.
|
64 |
|
|
* This option is only available if remote debugging has been enabled.
|
65 |
|
|
* In this case, the destination parameter specifies the host name or IP address
|
66 |
|
|
* and optionally, port number, of the socket receiving the debug information.
|
67 |
|
|
* 3 message is appended to the file destination
|
68 |
|
|
*/
|
69 |
|
|
if (defined('ADODB_ERROR_LOG_TYPE')) {
|
70 |
|
|
$t = date('Y-m-d H:i:s');
|
71 |
|
|
if (defined('ADODB_ERROR_LOG_DEST'))
|
72 |
|
|
error_log("($t) $s", ADODB_ERROR_LOG_TYPE, ADODB_ERROR_LOG_DEST);
|
73 |
|
|
else
|
74 |
|
|
error_log("($t) $s", ADODB_ERROR_LOG_TYPE);
|
75 |
|
|
}
|
76 |
|
|
}
|
77 |
|
|
?>
|