Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 17092 программиста и 1772 робота. Сейчас ищут 2079 программистов ...
MysqlndUhConnection::getErrorString - Returns a string description of the last error
Вернуться к: MysqlndUhConnection
MysqlndUhConnection::getErrorString
(PECL mysqlnd-uh >= 1.0.0-alpha)
MysqlndUhConnection::getErrorString — Returns a string description of the last error
Описание
public string MysqlndUhConnection::getErrorString
( mysqlnd_connection
$connection
)Returns a string description of the last error.
Список параметров
-
connection
-
Mysqlnd connection handle. Do not modify!
Возвращаемые значения
Error string for the most recent function call.
Примеры
MysqlndUhConnection::getErrorString() is not only executed after the invocation of a user space API call which maps directly to it but also called internally.
Пример #1 MysqlndUhConnection::getErrorString() example
<?php
class proxy extends MysqlndUhConnection {
public function getErrorString($res) {
printf("%s(%s)\n", __METHOD__, var_export(func_get_args(), true));
$ret = parent::getErrorString($res);
printf("%s returns %s\n", __METHOD__, var_export($ret, true));
return $ret;
}
}
mysqlnd_uh_set_connection_proxy(new proxy());
printf("connect...\n");
$mysqli = new mysqli("localhost", "root", "", "test");
printf("query...\n");
$mysqli->query("WILL_I_EVER_LEARN_SQL?");
printf("errno...\n");
var_dump($mysqli->error);
printf("close...\n");
$mysqli->close();
?>
Результат выполнения данного примера:
connect... proxy::getErrorString(array ( 0 => NULL, )) proxy::getErrorString returns '' query... errno... proxy::getErrorString(array ( 0 => NULL, )) proxy::getErrorString returns 'You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near \'WILL_I_EVER_LEARN_SQL?\' at line 1' string(168) "You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'WILL_I_EVER_LEARN_SQL?' at line 1" close...
Смотрите также
- mysqlnd_uh_set_connection_proxy() - Installs a proxy for mysqlnd connections
- MysqlndUhConnection::getErrorNumber() - Returns the error code for the most recent function call
- mysqli_error() - Возвращает строку с описанием последней ошибки
- mysql_error() - Возвращает текст ошибки последней операции с MySQL
Вернуться к: MysqlndUhConnection