mysqli_report.c 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. /*
  2. +----------------------------------------------------------------------+
  3. | PHP Version 7 |
  4. +----------------------------------------------------------------------+
  5. | Copyright (c) 1997-2018 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 "php.h"
  22. #include "php_ini.h"
  23. #include "ext/standard/info.h"
  24. #include "php_mysqli_structs.h"
  25. extern void php_mysqli_throw_sql_exception(char *sqlstate, int errorno, char *format, ...);
  26. /* {{{ proto bool mysqli_report(int flags)
  27. sets report level */
  28. PHP_FUNCTION(mysqli_report)
  29. {
  30. zend_long flags;
  31. if (zend_parse_parameters(ZEND_NUM_ARGS(), "l", &flags) == FAILURE) {
  32. return;
  33. }
  34. MyG(report_mode) = flags;
  35. RETURN_TRUE;
  36. }
  37. /* }}} */
  38. /* {{{ void php_mysqli_report_error(char *sqlstate, int errorno, char *error) */
  39. void php_mysqli_report_error(const char *sqlstate, int errorno, const char *error)
  40. {
  41. php_mysqli_throw_sql_exception((char *)sqlstate, errorno, "%s", error);
  42. }
  43. /* }}} */
  44. /* {{{ void php_mysqli_report_index() */
  45. void php_mysqli_report_index(const char *query, unsigned int status) {
  46. char index[15];
  47. if (status & SERVER_QUERY_NO_GOOD_INDEX_USED) {
  48. strcpy(index, "Bad index");
  49. } else if (status & SERVER_QUERY_NO_INDEX_USED) {
  50. strcpy(index, "No index");
  51. } else {
  52. return;
  53. }
  54. php_mysqli_throw_sql_exception("00000", 0, "%s used in query/prepared statement %s", index, query);
  55. }
  56. /* }}} */
  57. /*
  58. * Local variables:
  59. * tab-width: 4
  60. * c-basic-offset: 4
  61. * End:
  62. * vim600: noet sw=4 ts=4 fdm=marker
  63. * vim<600: noet sw=4 ts=4
  64. */