mysqli_exception.c 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. /*
  2. +----------------------------------------------------------------------+
  3. | PHP Version 5 |
  4. +----------------------------------------------------------------------+
  5. | Copyright (c) 1997-2016 The PHP Group |
  6. +----------------------------------------------------------------------+
  7. | This source file is subject to version 3.01 of the PHP license, |
  8. | that is bundled with this package in the file LICENSE, and is |
  9. | available through the world-wide-web at the following url: |
  10. | http://www.php.net/license/3_01.txt |
  11. | If you did not receive a copy of the PHP license and are unable to |
  12. | obtain it through the world-wide-web, please send a note to |
  13. | license@php.net so we can mail you a copy immediately. |
  14. +----------------------------------------------------------------------+
  15. | Author: Georg Richter <georg@php.net> |
  16. +----------------------------------------------------------------------+
  17. */
  18. #ifdef HAVE_CONFIG_H
  19. #include "config.h"
  20. #endif
  21. #include <signal.h>
  22. #include "php.h"
  23. #include "php_ini.h"
  24. #include "ext/standard/info.h"
  25. #include "php_mysqli_structs.h"
  26. #include "mysqli_priv.h"
  27. #include "zend_exceptions.h"
  28. /* {{{ mysqli_exception_methods[]
  29. */
  30. const zend_function_entry mysqli_exception_methods[] = {
  31. {NULL, NULL, NULL}
  32. };
  33. /* }}} */
  34. void php_mysqli_throw_sql_exception(char *sqlstate, int errorno TSRMLS_DC, char *format, ...)
  35. {
  36. zval *sql_ex;
  37. va_list arg;
  38. char *message;
  39. va_start(arg, format);
  40. vspprintf(&message, 0, format, arg);
  41. va_end(arg);;
  42. if (!(MyG(report_mode) & MYSQLI_REPORT_STRICT)) {
  43. php_error_docref(NULL TSRMLS_CC, E_WARNING, "(%s/%d): %s", sqlstate, errorno, message);
  44. efree(message);
  45. return;
  46. }
  47. MAKE_STD_ZVAL(sql_ex);
  48. object_init_ex(sql_ex, mysqli_exception_class_entry);
  49. if (message) {
  50. zend_update_property_string(mysqli_exception_class_entry, sql_ex, "message", sizeof("message") - 1,
  51. message TSRMLS_CC);
  52. }
  53. if (sqlstate) {
  54. zend_update_property_string(mysqli_exception_class_entry, sql_ex, "sqlstate", sizeof("sqlstate") - 1,
  55. sqlstate TSRMLS_CC);
  56. } else {
  57. zend_update_property_string(mysqli_exception_class_entry, sql_ex, "sqlstate", sizeof("sqlstate") - 1,
  58. "00000" TSRMLS_CC);
  59. }
  60. efree(message);
  61. zend_update_property_long(mysqli_exception_class_entry, sql_ex, "code", sizeof("code") - 1, errorno TSRMLS_CC);
  62. zend_throw_exception_object(sql_ex TSRMLS_CC);
  63. }
  64. /*
  65. * Local variables:
  66. * tab-width: 4
  67. * c-basic-offset: 4
  68. * indent-tabs-mode: t
  69. * End:
  70. * vim600: noet sw=4 ts=4 fdm=marker
  71. * vim<600: noet sw=4 ts=4
  72. */