|
maxdb_errnomaxdb::errno(PECL maxdb >= 1.0) maxdb_errno -- maxdb::errno — Returns the error code for the most recent function call ОписаниеПроцедурный стиль
int maxdb_errno
( resource $link
)
Объектно-ориентированный стиль int $maxdb->errno;
The maxdb_errno() function will return the last error code for the most recent MaxDB function call that can succeed or fail with respect to the database link defined by the link parameter. If no errors have occured, this function will return zero. Возвращаемые значенияAn error code value for the last call, if it failed. zero means no error occurred. ПримерыПример #1 Объектно-ориентированный стиль
<?php Пример #2 Процедурный стиль
<?php Результатом выполнения данного примера будет что-то подобное: PHP Warning: maxdb_query(): -4005 POS(8) Unknown column name:XXX [42000] <...> Errorcode: -4005 Смотрите также
|
|