adodb-errorpear.inc.php 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. <?php
  2. /**
  3. * @version V4.50 6 July 2004 (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. include_once('PEAR.php');
  14. if (!defined('ADODB_ERROR_HANDLER')) define('ADODB_ERROR_HANDLER','ADODB_Error_PEAR');
  15. /*
  16. * Enabled the following if you want to terminate scripts when an error occurs
  17. */
  18. //PEAR::setErrorHandling (PEAR_ERROR_DIE);
  19. /*
  20. * Name of the PEAR_Error derived class to call.
  21. */
  22. if (!defined('ADODB_PEAR_ERROR_CLASS')) define('ADODB_PEAR_ERROR_CLASS','PEAR_Error');
  23. /*
  24. * Store the last PEAR_Error object here
  25. */
  26. global $ADODB_Last_PEAR_Error; $ADODB_Last_PEAR_Error = false;
  27. /**
  28. * Error Handler with PEAR support. This will be called with the following params
  29. *
  30. * @param $dbms the RDBMS you are connecting to
  31. * @param $fn the name of the calling function (in uppercase)
  32. * @param $errno the native error number from the database
  33. * @param $errmsg the native error msg from the database
  34. * @param $p1 $fn specific parameter - see below
  35. * @param $P2 $fn specific parameter - see below
  36. */
  37. function ADODB_Error_PEAR($dbms, $fn, $errno, $errmsg, $p1=false, $p2=false)
  38. {
  39. global $ADODB_Last_PEAR_Error;
  40. if (error_reporting() == 0) return; // obey @ protocol
  41. switch($fn) {
  42. case 'EXECUTE':
  43. $sql = $p1;
  44. $inputparams = $p2;
  45. $s = "$dbms error: [$errno: $errmsg] in $fn(\"$sql\")";
  46. break;
  47. case 'PCONNECT':
  48. case 'CONNECT':
  49. $host = $p1;
  50. $database = $p2;
  51. $s = "$dbms error: [$errno: $errmsg] in $fn('$host', ?, ?, '$database')";
  52. break;
  53. default:
  54. $s = "$dbms error: [$errno: $errmsg] in $fn($p1, $p2)";
  55. break;
  56. }
  57. $class = ADODB_PEAR_ERROR_CLASS;
  58. $ADODB_Last_PEAR_Error = new $class($s, $errno,
  59. $GLOBALS['_PEAR_default_error_mode'],
  60. $GLOBALS['_PEAR_default_error_options'],
  61. $errmsg);
  62. //print "<p>!$s</p>";
  63. }
  64. /**
  65. * Returns last PEAR_Error object. This error might be for an error that
  66. * occured several sql statements ago.
  67. */
  68. function &ADODB_PEAR_Error()
  69. {
  70. global $ADODB_Last_PEAR_Error;
  71. return $ADODB_Last_PEAR_Error;
  72. }
  73. ?>