errorInfo()"HREF="function.pdostatement-errorinfo.html"> Podręcznik PHP Poprzedni Następny (no version in..."/>
Forum und email
PDOStatement->errorCode()

PDOStatement->errorCode()

(no version information, might be only in CVS)

PDOStatement->errorCode() --  Fetch the SQLSTATE associated with the last operation on the statement handle

Opis

class PDOStatement {

string errorCode ( void )

}

Zwracane wartości

Identical to PDO->errorCode(), except that PDOStatement->errorCode() only retrieves error codes for operations performed with PDOStatement objects.

Przykłady

Przykład 1. Retrieving a SQLSTATE code

<?php
/* Provoke an error -- the BONES table does not exist */
$err = $dbh->prepare('SELECT skull FROM bones');
$err->execute();

echo
"\nPDOStatement::errorCode(): ";
print
$err->errorCode();
?>

Powyższy przykład wyświetli:

PDOStatement::errorCode(): 42S02