|
MysqlndUhConnection::getErrorNumber(PECL mysqlnd-uh >= 1.0.0-alpha) MysqlndUhConnection::getErrorNumber — Returns the error code for the most recent function call Описание
public int MysqlndUhConnection::getErrorNumber
( mysqlnd_connection $connection
)
Returns the error code for the most recent function call. Список параметров
Возвращаемые значенияError code for the most recent function call. ПримерыMysqlndUhConnection::getErrorNumber() is not only executed after the invocation of a user space API call which maps directly to it but also called internally.
Пример #1 MysqlndUhConnection::getErrorNumber() example
<?php Результат выполнения данного примера: connect... proxy::getErrorNumber(array ( 0 => NULL, )) proxy::getErrorNumber returns 0 query... errno... proxy::getErrorNumber(array ( 0 => NULL, )) proxy::getErrorNumber returns 1064 int(1064) close... Смотрите также
|
|