public function DriverSettings::GetStatementCachingMode in Drupal driver for SQL Server and SQL Azure 8
Experimental statement caching for PDO prepared statement reuse.
'disabled' => Never use statement caching. 'on-demand' => Only use statement caching when implicitly set in a Context. 'always' => Always use statement caching.
1 call to DriverSettings::GetStatementCachingMode()
- DriverSettings::exportConfiguration in drivers/
lib/ Drupal/ Driver/ Database/ sqlsrv/ DriverSettings.php - Export current driver configuration.
File
- drivers/
lib/ Drupal/ Driver/ Database/ sqlsrv/ DriverSettings.php, line 220
Class
- DriverSettings
- Global settings for the driver.
Namespace
Drupal\Driver\Database\sqlsrvCode
public function GetStatementCachingMode() {
return $this->_statementCachingMode;
}