| Versionen | |
|---|---|
| drupal7 | public DatabaseConnection::supportsTransactionalDDL() |
Determine if this driver supports transactional DDL.
DDL queries are those that change the schema, such as ALTER queries.
TRUE if this connection supports transactions for DDL queries, FALSE otherwise.
includes/
<?php
public function supportsTransactionalDDL() {
return $this->transactionalDDLSupport;
}
?>
Kommentare
Kommentar hinzufügen