public function DriverSettings::GetDefaultIsolationLevel in Drupal driver for SQL Server and SQL Azure 8
Isolation level used for implicit transactions.
2 calls to DriverSettings::GetDefaultIsolationLevel()
- DriverSettings::exportConfiguration in drivers/
lib/ Drupal/ Driver/ Database/ sqlsrv/ DriverSettings.php - Export current driver configuration.
- DriverSettings::GetDefaultTransactionIsolationLevelInStatement in drivers/
lib/ Drupal/ Driver/ Database/ sqlsrv/ DriverSettings.php - PDO Constant names do not match 1-to-1 the transaction names that need to be used in SQL.
File
- drivers/
lib/ Drupal/ Driver/ Database/ sqlsrv/ DriverSettings.php, line 151
Class
- DriverSettings
- Global settings for the driver.
Namespace
Drupal\Driver\Database\sqlsrvCode
public function GetDefaultIsolationLevel() {
return $this->_defaultIsolationLevel;
}