PDOException 异常类

(PHP 5 >= 5.1.0, PHP 7, PHP 8)

简介

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

类摘要

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

属性

errorInfo

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

message

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

code

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

7i24.Com