|
mysqli_stmt::$errnomysqli_stmt_errno(PHP 5) mysqli_stmt::$errno -- mysqli_stmt_errno — Returns the error code for the most recent statement call ОписаниеОбъектно-ориентированный стиль int $mysqli_stmt->errno;
Процедурный стиль
int mysqli_stmt_errno
( mysqli_stmt $stmt
)
Returns the error code for the most recently invoked statement function that can succeed or fail. Client error message numbers are listed in the MySQL errmsg.h header file, server error message numbers are listed in mysqld_error.h. In the MySQL source distribution you can find a complete list of error messages and error numbers in the file Docs/mysqld_error.txt. Список параметров
Возвращаемые значенияAn error code value. Zero means no error occurred. ПримерыПример #1 Объектно-ориентированный стиль
<?php Пример #2 Процедурный стиль
<?php Результат выполнения данных примеров: Error: 1146. Смотрите также
|
|