PDOStatement::errorInfo

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

PDOStatement::errorInfo 獲取跟上一次語句句柄操作相關(guān)的擴展錯誤信息

說明

PDOStatement::errorInfo(): array

返回值

PDOStatement::errorInfo() 返回一個關(guān)于上一次語句句柄執(zhí)行操作的錯誤信息的數(shù)組 。該數(shù)組包含下列字段:

Element Information
0 SQLSTATE 錯誤碼(一個由5個字母或數(shù)字組成的在 ANSI SQL 標準中定義的標識符)。
1 具體驅(qū)動錯誤碼。
2 具體驅(qū)動錯誤信息。

范例

示例 #1 顯示連接到DB2數(shù)據(jù)庫的 PDO_ODBC 連接的 errorInfo() 的字段

<?php
/* 激發(fā)一個錯誤 --  BONES 數(shù)據(jù)表不存在 */
$sth $dbh->prepare('SELECT skull FROM bones');
$sth->execute();

echo 
"\nPDOStatement::errorInfo():\n";
$arr $sth->errorInfo();
print_r($arr);
?>

以上例程會輸出:

PDOStatement::errorInfo():
Array
(
    [0] => 42S02
    [1] => -204
    [2] => [IBM][CLI Driver][DB2/LINUX] SQL0204N  "DANIELS.BONES" is an undefined name.  SQLSTATE=42704
)

參見

  • PDO::errorCode() - 獲取跟數(shù)據(jù)庫句柄上一次操作相關(guān)的 SQLSTATE
  • PDO::errorInfo() - Fetch extended error information associated with the last operation on the database handle
  • PDOStatement::errorCode() - 獲取跟上一次語句句柄操作相關(guān)的 SQLSTATE