class StatementExecutionFailureEvent
Same name in other branches
- 10 core/lib/Drupal/Core/Database/Event/StatementExecutionFailureEvent.php \Drupal\Core\Database\Event\StatementExecutionFailureEvent
Represents the failure of a statement execution as an event.
Hierarchy
- class \Drupal\Component\EventDispatcher\Event extends \Symfony\Contracts\EventDispatcher\Event
- class \Drupal\Core\Database\Event\DatabaseEvent extends \Drupal\Component\EventDispatcher\Event
- class \Drupal\Core\Database\Event\StatementExecutionEndEvent extends \Drupal\Core\Database\Event\DatabaseEvent
- class \Drupal\Core\Database\Event\StatementExecutionFailureEvent extends \Drupal\Core\Database\Event\StatementExecutionEndEvent
- class \Drupal\Core\Database\Event\StatementExecutionEndEvent extends \Drupal\Core\Database\Event\DatabaseEvent
- class \Drupal\Core\Database\Event\DatabaseEvent extends \Drupal\Component\EventDispatcher\Event
Expanded class hierarchy of StatementExecutionFailureEvent
6 files declare their use of StatementExecutionFailureEvent
- DatabaseEventsTest.php in core/
tests/ Drupal/ Tests/ Core/ Database/ DatabaseEventsTest.php - DatabaseEventSubscriber.php in core/
modules/ system/ tests/ modules/ database_test/ src/ EventSubscriber/ DatabaseEventSubscriber.php - DatabaseEventTest.php in core/
tests/ Drupal/ KernelTests/ Core/ Database/ DatabaseEventTest.php - PerformanceDataCollector.php in core/
modules/ system/ tests/ modules/ performance_test/ src/ PerformanceDataCollector.php - StatementPrefetchIterator.php in core/
lib/ Drupal/ Core/ Database/ StatementPrefetchIterator.php
File
-
core/
lib/ Drupal/ Core/ Database/ Event/ StatementExecutionFailureEvent.php, line 8
Namespace
Drupal\Core\Database\EventView source
class StatementExecutionFailureEvent extends StatementExecutionEndEvent {
/**
* Constructor.
*
* See 'Customizing database settings' in settings.php for an explanation of
* the $key and $target connection values.
*
* @param int $statementObjectId
* The id of the StatementInterface object as returned by spl_object_id().
* @param string $key
* The database connection key.
* @param string $target
* The database connection target.
* @param string $queryString
* The SQL statement string being executed, with placeholders.
* @param array $args
* The placeholders' replacement values.
* @param array $caller
* A normalized debug backtrace entry representing the last non-db method
* called.
* @param float $startTime
* The time of the statement execution start.
* @param string $exceptionClass
* The class of the exception that was thrown.
* @param int|string $exceptionCode
* The code of the exception that was thrown.
* @param string $exceptionMessage
* The message of the exception that was thrown.
*/
public function __construct(int $statementObjectId, string $key, string $target, string $queryString, array $args, array $caller, float $startTime, string $exceptionClass, int|string $exceptionCode, string $exceptionMessage) {
parent::__construct($statementObjectId, $key, $target, $queryString, $args, $caller, $startTime);
}
}
Members
Title Sort descending | Modifiers | Object type | Summary | Overriden Title |
---|---|---|---|---|
DatabaseEvent::$time | public | property | The time of the event. | |
StatementExecutionEndEvent::getElapsedTime | public | function | Gets the query execution elapsed time. | |
StatementExecutionFailureEvent::__construct | public | function | Constructor. | Overrides StatementExecutionEndEvent::__construct |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.