PDO
PHP Manual

PDOException 异常类

(PHP 5 >= 5.1.0, PHP 7)

简介

代表一个由 PDO 产生的错误。在自己的代码不应抛出一个 PDOException 异常。关于 PHP 异常的更多信息请参见 异常

类摘要

PDOException extends RuntimeException {
/* 属性 */
public array $errorInfo ;
protected string $message ;
protected string $code ;
/* 继承的方法 */
final public string Exception::getMessage ( void )
final public Exception Exception::getPrevious ( void )
final public int Exception::getCode ( void )
final public string Exception::getFile ( void )
final public int Exception::getLine ( void )
final public array Exception::getTrace ( void )
final public string Exception::getTraceAsString ( void )
public string Exception::__toString ( void )
final private void Exception::__clone ( void )
}

属性

errorInfo

相当于PDO::errorInfo()PDOStatement::errorInfo()

message

文本错误信息。用 Exception::getMessage() 来访问。

code

SQLSTATE 错误码。用Exception::getCode() 来访问。


PDO
PHP Manual