PDOException 異常類

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() 來訪問。

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。 必填欄位標示為 *