Statement on glibc/iconv Vulnerability

La clase mysqli_sql_exception

(PHP 5, PHP 7, PHP 8)

Introducción

La clase que gestiona las excepciones mysqli.

Sinopsis de la Clase

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

Propiedades

sqlstate

El estado sql con el error.

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top