PDOException 异常类

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

简介

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

类摘要

classPDOExceptionextendsRuntimeException {
protectedint|string$code;
public?array$errorInfo = null;
protectedstring$message = "";
privatestring$string = "";
protectedint$code;
protectedstring$file = "";
protectedint$line;
privatearray$trace = [];
private?Throwable$previous = null;
publicException::__construct(string$message = "", int$code = 0, ?Throwable$previous = null)
finalpublicException::getCode(): int
finalpublicException::getLine(): int
}

属性

errorInfo

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

code

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

To Top