2003-12-13 08:28:21 +08:00
|
|
|
/*
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| PHP Version 5 |
|
|
|
|
+----------------------------------------------------------------------+
|
2010-01-03 17:23:27 +08:00
|
|
|
| Copyright (c) 1997-2010 The PHP Group |
|
2003-12-13 08:28:21 +08:00
|
|
|
+----------------------------------------------------------------------+
|
2006-01-01 20:51:34 +08:00
|
|
|
| This source file is subject to version 3.01 of the PHP license, |
|
2003-12-13 08:28:21 +08:00
|
|
|
| that is bundled with this package in the file LICENSE, and is |
|
|
|
|
| available through the world-wide-web at the following url: |
|
2006-01-01 20:51:34 +08:00
|
|
|
| http://www.php.net/license/3_01.txt |
|
2003-12-13 08:28:21 +08:00
|
|
|
| If you did not receive a copy of the PHP license and are unable to |
|
|
|
|
| obtain it through the world-wide-web, please send a note to |
|
|
|
|
| license@php.net so we can mail you a copy immediately. |
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| Author: Georg Richter <georg@php.net> |
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
|
|
|
|
$Id$
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "php.h"
|
|
|
|
#include "php_ini.h"
|
|
|
|
#include "ext/standard/info.h"
|
2007-10-06 05:23:56 +08:00
|
|
|
#include "php_mysqli_structs.h"
|
2003-12-13 08:28:21 +08:00
|
|
|
|
2006-10-02 15:36:18 +08:00
|
|
|
/* {{{ proto bool mysqli_report(int flags)
|
2003-12-13 08:28:21 +08:00
|
|
|
sets report level */
|
|
|
|
PHP_FUNCTION(mysqli_report)
|
|
|
|
{
|
2004-02-26 04:16:27 +08:00
|
|
|
long flags;
|
2003-12-13 08:28:21 +08:00
|
|
|
|
|
|
|
|
|
|
|
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "l", &flags) == FAILURE) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
MyG(report_mode) = flags;
|
|
|
|
|
|
|
|
RETURN_TRUE;
|
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
/* {{{ void php_mysqli_report_error(char *sqlstate, int errorno, char *error) */
|
2007-10-06 05:23:56 +08:00
|
|
|
void php_mysqli_report_error(const char *sqlstate, int errorno, const char *error TSRMLS_DC)
|
|
|
|
{
|
|
|
|
php_mysqli_throw_sql_exception((char *)sqlstate, errorno TSRMLS_CC, "%s", error);
|
2003-12-13 08:28:21 +08:00
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
/* {{{ void php_mysqli_report_index() */
|
2007-10-06 05:23:56 +08:00
|
|
|
void php_mysqli_report_index(const char *query, unsigned int status TSRMLS_DC) {
|
2003-12-13 08:28:21 +08:00
|
|
|
char index[15];
|
|
|
|
|
|
|
|
if (status & SERVER_QUERY_NO_GOOD_INDEX_USED) {
|
|
|
|
strcpy(index, "Bad index");
|
|
|
|
} else if (status & SERVER_QUERY_NO_INDEX_USED) {
|
|
|
|
strcpy(index, "No index");
|
|
|
|
} else {
|
|
|
|
return;
|
|
|
|
}
|
2005-01-07 22:59:59 +08:00
|
|
|
php_mysqli_throw_sql_exception("00000", 0 TSRMLS_CC, "%s used in query/prepared statement %s", index, query);
|
2003-12-13 08:28:21 +08:00
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Local variables:
|
|
|
|
* tab-width: 4
|
|
|
|
* c-basic-offset: 4
|
|
|
|
* End:
|
|
|
|
* vim600: noet sw=4 ts=4 fdm=marker
|
|
|
|
* vim<600: noet sw=4 ts=4
|
|
|
|
*/
|