public function Connection::supportsTransactionalDDL in Drupal 9
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/Database/Connection.php \Drupal\Core\Database\Connection::supportsTransactionalDDL()
Determines if this driver supports transactional DDL.
DDL queries are those that change the schema, such as ALTER queries.
Return value
bool TRUE if this connection supports transactions for DDL queries, FALSE otherwise.
File
- core/
lib/ Drupal/ Core/ Database/ Connection.php, line 1815
Class
- Connection
- Base Database API class.
Namespace
Drupal\Core\DatabaseCode
public function supportsTransactionalDDL() {
return $this->transactionalDDLSupport;
}