You are here

public function ConnectionSettings::GetStatementCachingMode in Drupal driver for SQL Server and SQL Azure 8.2

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 ConnectionSettings::GetStatementCachingMode()
ConnectionSettings::exportConfiguration in drivers/lib/Drupal/Driver/Database/sqlsrv/ConnectionSettings.php
Export current driver configuration.

File

drivers/lib/Drupal/Driver/Database/sqlsrv/ConnectionSettings.php, line 146

Class

ConnectionSettings
Global settings for the driver.

Namespace

Drupal\Driver\Database\sqlsrv

Code

public function GetStatementCachingMode() {
  return $this->_statementCachingMode;
}