adodb-exceptions.inc.php 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  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. * Exception-handling code using PHP5 exceptions (try-catch-throw).
  13. */
  14. if (!defined('ADODB_ERROR_HANDLER_TYPE')) define('ADODB_ERROR_HANDLER_TYPE',E_USER_ERROR);
  15. define('ADODB_ERROR_HANDLER','adodb_throw');
  16. class ADODB_Exception extends Exception {
  17. var $dbms;
  18. var $fn;
  19. var $sql = '';
  20. var $params = '';
  21. var $host = '';
  22. var $database = '';
  23. function __construct($dbms, $fn, $errno, $errmsg, $p1, $p2, $thisConnection)
  24. {
  25. switch($fn) {
  26. case 'EXECUTE':
  27. $this->sql = $p1;
  28. $this->params = $p2;
  29. $s = "$dbms error: [$errno: $errmsg] in $fn(\"$p1\")\n";
  30. break;
  31. case 'PCONNECT':
  32. case 'CONNECT':
  33. $user = $thisConnection->user;
  34. $s = "$dbms error: [$errno: $errmsg] in $fn($p1, '$user', '****', $p2)\n";
  35. break;
  36. default:
  37. $s = "$dbms error: [$errno: $errmsg] in $fn($p1, $p2)\n";
  38. break;
  39. }
  40. $this->dbms = $dbms;
  41. $this->host = $thisConnection->host;
  42. $this->database = $thisConnection->database;
  43. $this->fn = $fn;
  44. $this->msg = $errmsg;
  45. if (!is_numeric($errno)) $errno = -1;
  46. parent::__construct($s,$errno);
  47. }
  48. }
  49. /**
  50. * Default Error Handler. This will be called with the following params
  51. *
  52. * @param $dbms the RDBMS you are connecting to
  53. * @param $fn the name of the calling function (in uppercase)
  54. * @param $errno the native error number from the database
  55. * @param $errmsg the native error msg from the database
  56. * @param $p1 $fn specific parameter - see below
  57. * @param $P2 $fn specific parameter - see below
  58. */
  59. function adodb_throw($dbms, $fn, $errno, $errmsg, $p1, $p2, $thisConnection)
  60. {
  61. global $ADODB_EXCEPTION;
  62. if (error_reporting() == 0) return; // obey @ protocol
  63. if (is_string($ADODB_EXCEPTION)) $errfn = $ADODB_EXCEPTION;
  64. else $errfn = 'ADODB_EXCEPTION';
  65. throw new $errfn($dbms, $fn, $errno, $errmsg, $p1, $p2, $thisConnection);
  66. }
  67. ?>