(no version information, might be only in CVS)
Identical to PDO::errorCode(), except that PDOStatement::errorCode() only retrieves error codes for operations performed with PDOStatement objects.
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();?>
The above example will output:
PDOStatement::errorCode(): 42S02