mysqli异常类

(PHP 5, PHP 7, PHP 8)

简介

mysqli异常类

类摘要

class mysqli_sql_exception extends RuntimeException {
/* 属性 */
protected string $sqlstate;
/* 继承的属性 */
protected string $message = "";
private string $string = "";
protected int $code;
protected string $file = "";
protected int $line;
private array $trace = [];
private ?Throwable $previous = null;
}

属性

sqlstate

出现错误的sql状态

7i24.Com