mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
d8e9af8af8
Database abstraction broken up into controller, connector, query builder, and schema manager, each independently configurable via YAML / Injector Creation of new DBQueryGenerator for database specific generation of SQL Support for parameterised queries, move of code base to use these over escaped conditions Refactor of SQLQuery into separate query classes for each of INSERT UPDATE DELETE and SELECT Support for PDO Installation process upgraded to use new ORM SS_DatabaseException created to handle database errors, maintaining details of raw sql and parameter details for user code designed interested in that data. Renamed DB static methods to conform correctly to naming conventions (e.g. DB::getConn -> DB::get_conn) 3.2 upgrade docs Performance Optimisation and simplification of code to use more concise API API Ability for database adapters to register extensions to ConfigureFromEnv.php
58 lines
1.2 KiB
PHP
58 lines
1.2 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Error class for database exceptions
|
|
*
|
|
* @package framework
|
|
* @subpackage model
|
|
*/
|
|
class SS_DatabaseException extends Exception {
|
|
|
|
/**
|
|
* The SQL that generated this error
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $sql = null;
|
|
|
|
/**
|
|
* The parameters given for this query, if any
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $parameters = array();
|
|
|
|
/**
|
|
* Returns the SQL that generated this error
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getSQL() {
|
|
return $this->sql;
|
|
}
|
|
|
|
/**
|
|
* The parameters given for this query, if any
|
|
*
|
|
* @return array
|
|
*/
|
|
public function getParameters() {
|
|
return $this->parameters;
|
|
}
|
|
|
|
/**
|
|
* Constructs the database exception
|
|
*
|
|
* @param string $message The Exception message to throw.
|
|
* @param integer $code The Exception code.
|
|
* @param Exception $previous The previous exception used for the exception chaining.
|
|
* @param string $sql The SQL executed for this query
|
|
* @param array $parameters The parameters given for this query, if any
|
|
*/
|
|
function __construct($message = '', $code = 0, $previous = null, $sql = null, $parameters = array()) {
|
|
parent::__construct($message, $code, $previous);
|
|
$this->sql = $sql;
|
|
$this->parameters = $parameters;
|
|
}
|
|
}
|