(no version information, might be only in CVS)
PDOStatement::errorInfo -- Fetch an array of error information associated with the last operation on the statement handle警告 |
この関数は、 実験的なステータスにあります。これは、この関数の 動作、関数名、ここで書かれていること全てがPHPの将来のバージョンで予告 なく変更される可能性があることを意味します。注意を喚起するとともに自分 のリスクでこの関数を使用して下さい。 |
PDOStatement::errorInfo() returns an array of error information about the last operation performed by this statement handle. The array consists of the following fields:
Element | Information |
---|---|
0 | Generic PDO error code corresponding to one of the PDO_ERR_* constants. |
1 | Driver-specific error code. |
2 | Driver-specific error message. |
上の例の出力は以下となります:
Error: a requested database object does not exist. Driver-specific error code: -204 Driver-specific message: [SQLExecute: -204 [IBM][CLI Driver][DB2/NT] SQL0204N "DB2INST1.BONES" is an undefined name. SQLSTATE=42704 [SQL State 42S02] (..\pecl\pdo_odbc\odbc_stmt.c:80)] |