php8.5
Home/ Manual/ pdo / pdostatement/ PDOStatement::errorCode

PDOStatement::errorCode

PHP function Edit on GitHub ✎

(PHP 5 >= 5.1.0, PHP 7, PHP 8, PECL pdo >= 0.1.0)

Fetch the SQLSTATE associated with the last operation on the statement handle

Description

PDOStatement::errorCode(): string|null

Parameters Parameters

Return Values

Identical to PDO::errorCode, except that PDOStatement::errorCode only retrieves error codes for operations performed with PDOStatement objects.

Examples

Retrieving an SQLSTATE code

php
<?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:

output
PDOStatement::errorCode(): 42S02

See Also

  • PDO::errorCode
  • PDO::errorInfo
  • PDOStatement::errorInfo

Source: reference/pdo/pdostatement/errorcode.xml · from the official PHP manual (php/doc-en)