PDOStatement
php 手册 | 脚本学堂 | 脚本编程 | 网站编程 | 系统管理 | 服务器配置 | 数据库管理 | Php教程 | python教程 | 正则表达式 | 批处理脚本 | Centos教程 | Linux基础教程

PDOStatement->errorCode

(No version information available, might be only in CVS)

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

说明

string PDOStatement::errorCode ( void )

返回值

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

上例将输出:

PDOStatement::errorCode(): 42S02

参见


PDOStatement
php 手册 | 脚本学堂 | 脚本编程 | 网站编程 | 系统管理 | 服务器配置 | 数据库管理 | Php教程 | python教程 | 正则表达式 | 批处理脚本 | Centos教程 | Linux基础教程