2005-01-07 22:59:59 +08:00
|
|
|
/*
|
|
|
|
+----------------------------------------------------------------------+
|
2019-01-30 17:03:12 +08:00
|
|
|
| Copyright (c) The PHP Group |
|
2005-01-07 22:59:59 +08:00
|
|
|
+----------------------------------------------------------------------+
|
2006-01-01 20:51:34 +08:00
|
|
|
| This source file is subject to version 3.01 of the PHP license, |
|
2005-01-07 22:59:59 +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 |
|
2005-01-07 22:59:59 +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> |
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
|
|
|
|
*/
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <signal.h>
|
|
|
|
|
|
|
|
#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"
|
2010-08-20 20:25:17 +08:00
|
|
|
#include "mysqli_priv.h"
|
2005-01-07 22:59:59 +08:00
|
|
|
#include "zend_exceptions.h"
|
|
|
|
|
|
|
|
/* {{{ mysqli_exception_methods[]
|
|
|
|
*/
|
2007-09-28 02:00:48 +08:00
|
|
|
const zend_function_entry mysqli_exception_methods[] = {
|
2016-06-22 05:40:50 +08:00
|
|
|
PHP_FE_END
|
2005-01-07 22:59:59 +08:00
|
|
|
};
|
|
|
|
/* }}} */
|
|
|
|
|
2014-12-14 06:06:14 +08:00
|
|
|
void php_mysqli_throw_sql_exception(char *sqlstate, int errorno, char *format, ...)
|
2005-01-07 22:59:59 +08:00
|
|
|
{
|
2014-05-11 14:53:18 +08:00
|
|
|
zval sql_ex;
|
2005-01-07 22:59:59 +08:00
|
|
|
va_list arg;
|
|
|
|
char *message;
|
|
|
|
|
2010-10-04 18:02:58 +08:00
|
|
|
va_start(arg, format);
|
2005-01-08 21:36:17 +08:00
|
|
|
vspprintf(&message, 0, format, arg);
|
2017-06-26 05:24:23 +08:00
|
|
|
va_end(arg);
|
2005-01-07 22:59:59 +08:00
|
|
|
|
|
|
|
if (!(MyG(report_mode) & MYSQLI_REPORT_STRICT)) {
|
2014-12-14 06:06:14 +08:00
|
|
|
php_error_docref(NULL, E_WARNING, "(%s/%d): %s", sqlstate, errorno, message);
|
2005-06-28 01:33:56 +08:00
|
|
|
efree(message);
|
2005-01-07 22:59:59 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-05-11 14:53:18 +08:00
|
|
|
object_init_ex(&sql_ex, mysqli_exception_class_entry);
|
2005-01-07 22:59:59 +08:00
|
|
|
|
|
|
|
if (message) {
|
2014-05-11 14:53:18 +08:00
|
|
|
zend_update_property_string(mysqli_exception_class_entry, &sql_ex, "message", sizeof("message") - 1,
|
2014-12-14 06:06:14 +08:00
|
|
|
message);
|
2005-01-07 22:59:59 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (sqlstate) {
|
2014-05-11 14:53:18 +08:00
|
|
|
zend_update_property_string(mysqli_exception_class_entry, &sql_ex, "sqlstate", sizeof("sqlstate") - 1,
|
2014-12-14 06:06:14 +08:00
|
|
|
sqlstate);
|
2005-01-07 22:59:59 +08:00
|
|
|
} else {
|
2014-05-11 14:53:18 +08:00
|
|
|
zend_update_property_string(mysqli_exception_class_entry, &sql_ex, "sqlstate", sizeof("sqlstate") - 1,
|
2014-12-14 06:06:14 +08:00
|
|
|
"00000");
|
2005-01-07 22:59:59 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
efree(message);
|
2014-12-14 06:06:14 +08:00
|
|
|
zend_update_property_long(mysqli_exception_class_entry, &sql_ex, "code", sizeof("code") - 1, errorno);
|
2005-01-07 22:59:59 +08:00
|
|
|
|
2014-12-14 06:06:14 +08:00
|
|
|
zend_throw_exception_object(&sql_ex);
|
2005-01-07 22:59:59 +08:00
|
|
|
}
|