Forum und email

PDOStatement->errorCode()

(PHP 5 >= 5.1.0, PECL pdo:0.1-1.0.3)

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

Beschreibung

PDOStatement
string errorCode ( void )

Rückgabewerte

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

Beispiele

Example#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();
?>

Das oben gezeigte Beispiel erzeugt folgende Ausgabe:

PDOStatement::errorCode(): 42S02