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 Exception::getMessage ( void ) : string
final public Exception::getPrevious ( void ) : Throwable
final public Exception::getCode ( void ) : int
final public Exception::getFile ( void ) : string
final public Exception::getLine ( void ) : int
final public Exception::getTrace ( void ) : array
final public Exception::getTraceAsString ( void ) : string
public Exception::__toString ( void ) : string
final private Exception::__clone ( void ) : void
}

属性

errorInfo

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

message

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

code

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