PageRenderTime 42ms CodeModel.GetById 17ms RepoModel.GetById 1ms app.codeStats 0ms

/includes/adodb/adodb-errorhandler.inc.php

https://gitlab.com/BGCX261/zion-downloads-css-svn-to-git
PHP | 91 lines | 43 code | 11 blank | 37 comment | 8 complexity | eaf1ec241ca40a3523508a233716d221 MD5 | raw file
  1. <?php
  2. /**
  3. * @version V4.94 23 Jan 2007 (c) 2000-2007 John Lim (jlim#natsoft.com.my). All rights reserved.
  4. * Released under both BSD license and Lesser GPL library license.
  5. * Whenever there is any discrepancy between the two licenses,
  6. * the BSD license will take precedence.
  7. *
  8. * Set tabs to 4 for best viewing.
  9. *
  10. * Latest version is available at http://php.weblogs.com
  11. *
  12. */
  13. // added Claudio Bustos clbustos#entelchile.net
  14. if (!defined('ADODB_ERROR_HANDLER_TYPE')) define('ADODB_ERROR_HANDLER_TYPE',E_USER_ERROR);
  15. if (!defined('ADODB_ERROR_HANDLER')) define('ADODB_ERROR_HANDLER','ADODB_Error_Handler');
  16. /**
  17. * Default Error Handler. This will be called with the following params
  18. *
  19. * @param $dbms the RDBMS you are connecting to
  20. * @param $fn the name of the calling function (in uppercase)
  21. * @param $errno the native error number from the database
  22. * @param $errmsg the native error msg from the database
  23. * @param $p1 $fn specific parameter - see below
  24. * @param $p2 $fn specific parameter - see below
  25. * @param $thisConn $current connection object - can be false if no connection object created
  26. */
  27. function ADODB_Error_Handler($dbms, $fn, $errno, $errmsg, $p1, $p2, &$thisConnection)
  28. {
  29. if (error_reporting() == 0) return; // obey @ protocol
  30. switch($fn) {
  31. case 'EXECUTE':
  32. $sql = $p1;
  33. $inputparams = $p2;
  34. $s = "$dbms error: [$errno: $errmsg] in $fn(\"$sql\")\n";
  35. break;
  36. case 'PCONNECT':
  37. case 'CONNECT':
  38. $host = $p1;
  39. $database = $p2;
  40. $s = "$dbms error: [$errno: $errmsg] in $fn($host, '****', '****', $database)\n";
  41. break;
  42. default:
  43. $s = "$dbms error: [$errno: $errmsg] in $fn($p1, $p2)\n";
  44. break;
  45. }
  46. /*
  47. * Log connection error somewhere
  48. * 0 message is sent to PHP's system logger, using the Operating System's system
  49. * logging mechanism or a file, depending on what the error_log configuration
  50. * directive is set to.
  51. * 1 message is sent by email to the address in the destination parameter.
  52. * This is the only message type where the fourth parameter, extra_headers is used.
  53. * This message type uses the same internal function as mail() does.
  54. * 2 message is sent through the PHP debugging connection.
  55. * This option is only available if remote debugging has been enabled.
  56. * In this case, the destination parameter specifies the host name or IP address
  57. * and optionally, port number, of the socket receiving the debug information.
  58. * 3 message is appended to the file destination
  59. */
  60. if (defined('ADODB_ERROR_LOG_TYPE')) {
  61. $t = date('Y-m-d H:i:s');
  62. if (defined('ADODB_ERROR_LOG_DEST'))
  63. error_log("($t) $s", ADODB_ERROR_LOG_TYPE, ADODB_ERROR_LOG_DEST);
  64. else
  65. error_log("($t) $s", ADODB_ERROR_LOG_TYPE);
  66. }
  67. $unique = substr(md5(rand(0, 1000)), 0, 7);
  68. $errorstring = "";
  69. $errorstring .= "<div class='dbg' id='" . $unique . "'><span style='font-weight:bold'>".$errmsg."</span> <br />";
  70. $errorstring .= "<br /><span>SQL Query type: </span><span style='font-weight:bold'>$fn</span><span><br />";
  71. $errorstring .= "<span>Script: <span style='font-weight:bold'>'{$_SERVER['PHP_SELF']}'</span></span><br />";
  72. $errorstring .= "<span>SQL Query: <span style='font-weight:bold'>$p1</span></span><br />";
  73. $errorstring .= "<span>SQL Params: <span style='font-weight:bold'>$p2</span></span><br />";
  74. echo $errorstring . "<hr></div>";
  75. echo "<script>$('msg-red-debug').setStyle('display', 'block');$('".$unique."').getChildren().injectInside('debug-text');</script>";
  76. echo "<script>$('".$unique."').getChildren().remove();</script>";
  77. if(!strstr($p1, "_log(type") && !defined("IN_INSTALL"))
  78. $log = new CSystemLog("e", "sql error", $errmsg . "<br /><br />Query: $p1");
  79. }
  80. ?>