1 : /*
2 : +----------------------------------------------------------------------+
3 : | PHP Version 5 |
4 : +----------------------------------------------------------------------+
5 : | Copyright (c) 1997-2009 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 : $Id: mysqli_report.c 272370 2008-12-31 11:15:49Z sebastian $
19 : */
20 :
21 : #ifdef HAVE_CONFIG_H
22 : #include "config.h"
23 : #endif
24 :
25 : #include "php.h"
26 : #include "php_ini.h"
27 : #include "ext/standard/info.h"
28 : #include "php_mysqli_structs.h"
29 :
30 : /* {{{ proto bool mysqli_report(int flags)
31 : sets report level */
32 : PHP_FUNCTION(mysqli_report)
33 33 : {
34 : long flags;
35 :
36 :
37 33 : if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "l", &flags) == FAILURE) {
38 2 : return;
39 : }
40 :
41 31 : MyG(report_mode) = flags;
42 :
43 31 : RETURN_TRUE;
44 : }
45 : /* }}} */
46 :
47 : /* {{{ void php_mysqli_report_error(char *sqlstate, int errorno, char *error) */
48 : void php_mysqli_report_error(const char *sqlstate, int errorno, const char *error TSRMLS_DC)
49 14 : {
50 14 : php_mysqli_throw_sql_exception((char *)sqlstate, errorno TSRMLS_CC, "%s", error);
51 14 : }
52 : /* }}} */
53 :
54 : /* {{{ void php_mysqli_report_index() */
55 1 : void php_mysqli_report_index(const char *query, unsigned int status TSRMLS_DC) {
56 : char index[15];
57 :
58 1 : if (status & SERVER_QUERY_NO_GOOD_INDEX_USED) {
59 0 : strcpy(index, "Bad index");
60 1 : } else if (status & SERVER_QUERY_NO_INDEX_USED) {
61 1 : strcpy(index, "No index");
62 : } else {
63 0 : return;
64 : }
65 1 : php_mysqli_throw_sql_exception("00000", 0 TSRMLS_CC, "%s used in query/prepared statement %s", index, query);
66 : }
67 : /* }}} */
68 :
69 : /*
70 : * Local variables:
71 : * tab-width: 4
72 : * c-basic-offset: 4
73 : * End:
74 : * vim600: noet sw=4 ts=4 fdm=marker
75 : * vim<600: noet sw=4 ts=4
76 : */
|