Home
last modified time | relevance | path

Searched refs:errorno (Results 1 – 6 of 6) sorted by relevance

/PHP-8.3/ext/mysqli/
H A Dmysqli_report.c26 extern void php_mysqli_throw_sql_exception(char *sqlstate, int errorno, char *format, ...);
45 void php_mysqli_report_error(const char *sqlstate, int errorno, const char *error) in php_mysqli_report_error() argument
47 php_mysqli_throw_sql_exception((char *)sqlstate, errorno, "%s", error); in php_mysqli_report_error()
H A Dmysqli_exception.c30 void php_mysqli_throw_sql_exception(char *sqlstate, int errorno, char *format, ...) in php_mysqli_throw_sql_exception() argument
41 php_error_docref(NULL, E_WARNING, "(%s/%d): %s", sqlstate, errorno, message); in php_mysqli_throw_sql_exception()
62 …te_property_long(mysqli_exception_class_entry, Z_OBJ(sql_ex), "code", sizeof("code") - 1, errorno); in php_mysqli_throw_sql_exception()
H A Dmysqli_warning.c53 MYSQLI_WARNING *php_new_warning(zval * reason, int errorno) in php_new_warning() argument
64 w->errorno = errorno; in php_new_warning()
203 ZVAL_LONG(retval, w->errorno); in mysqli_warning_errno()
H A Dmysqli_priv.h59 extern void php_mysqli_report_error(const char *sqlstate, int errorno, const char *error);
61 extern void php_mysqli_throw_sql_exception(char *sqlstate, int errorno, char *format, ...);
H A Dphp_mysqli_structs.h95 int errorno; member
/PHP-8.3/ext/mysqli/tests/
H A Dbug62046.phpt20 printf("[003] Execute failed, [%d] %s\n", $stmt->errorno, $stmt->error);
23 printf("[004] store_result failed, [%d] %s\n", $stmt->errorno, $stmt->error);
27 printf("[005] bind_result failed, [%d] %s\n", $stmt->errorno, $stmt->error);
30 printf("[006] bind_result failed, [%d] %s\n", $stmt->errorno, $stmt->error);

Completed in 34 milliseconds