(PECL mysqlnd-uh >= 1.0.0-alpha)
MysqlndUhConnection::getSqlstate — Retourne l'erreur SQLSTATE depuis la dernière opération MySQL
$connection
) : stringRetourne l'erreur SQLSTATE depuis la dernière opération MySQL.
connection
Le gestionnaire de connexion Mysqlnd. Ne pas modifier !
Le code SQLSTATE.
Exemple #1 Exemple avec MysqlndUhConnection::getSqlstate()
<?php
class proxy extends MysqlndUhConnection {
public function getSqlstate($res) {
printf("%s(%s)\n", __METHOD__, var_export(func_get_args(), true));
$ret = parent::getSqlstate($res);
printf("%s retourne %s\n", __METHOD__, var_export($ret, true));
return $ret;
}
}
mysqlnd_uh_set_connection_proxy(new proxy());
$mysqli = new mysqli("localhost", "root", "", "test");
var_dump($mysqli->sqlstate);
$mysqli->query("AN_INVALID_REQUEST_TO_PROVOKE_AN_ERROR");
var_dump($mysqli->sqlstate);
?>
L'exemple ci-dessus va afficher :
proxy::getSqlstate(array ( 0 => NULL, )) proxy::getSqlstate retourne '00000' string(5) "00000" proxy::getSqlstate(array ( 0 => NULL, )) proxy::getSqlstate retourne '42000' string(5) "42000"