class DatabaseException extends Exception

Error class for database exceptions

Methods

string
getSQL()

Returns the SQL that generated this error

array
getParameters()

The parameters given for this query, if any

__construct(string $message = '', integer $code, Exception $previous = null, string $sql = null, array $parameters = array())

Constructs the database exception

Details

at line 32
string getSQL()

Returns the SQL that generated this error

Return Value

string

at line 42
array getParameters()

The parameters given for this query, if any

Return Value

array

at line 56
__construct(string $message = '', integer $code, Exception $previous = null, string $sql = null, array $parameters = array())

Constructs the database exception

Parameters

string $message The Exception message to throw.
integer $code The Exception code.
Exception $previous The previous exception used for the exception chaining.
string $sql The SQL executed for this query
array $parameters The parameters given for this query, if any