public function DriverSettings::GetDefaultTransactionIsolationLevelInStatement in Drupal driver for SQL Server and SQL Azure 8
PDO Constant names do not match 1-to-1 the transaction names that need to be used in SQL.
Return value
mixed
File
- drivers/
lib/ Drupal/ Driver/ Database/ sqlsrv/ DriverSettings.php, line 161
Class
- DriverSettings
- Global settings for the driver.
Namespace
Drupal\Driver\Database\sqlsrvCode
public function GetDefaultTransactionIsolationLevelInStatement() {
return str_replace('_', ' ', $this
->GetDefaultIsolationLevel());
}