adodb-errorhandler.inc.php 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. <?php
  2. /**
  3. * @version V4.60 24 Jan 2005 (c) 2000-2005 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. //print "<p>$s</p>";
  68. trigger_error($s,ADODB_ERROR_HANDLER_TYPE);
  69. }
  70. ?>