You are here

protected function Connection::getServerVersion in Drupal 10

Same name in this branch
  1. 10 core/modules/mysql/src/Driver/Database/mysql/Connection.php \Drupal\mysql\Driver\Database\mysql\Connection::getServerVersion()
  2. 10 core/modules/system/tests/modules/driver_test/src/Driver/Database/DrivertestMysqlDeprecatedVersion/Connection.php \Drupal\driver_test\Driver\Database\DrivertestMysqlDeprecatedVersion\Connection::getServerVersion()

Gets the server version.

Return value

string The PDO server version.

2 calls to Connection::getServerVersion()
Connection::getMariaDbVersionMatch in core/modules/mysql/src/Driver/Database/mysql/Connection.php
Gets the MariaDB portion of the server version.
Connection::version in core/modules/mysql/src/Driver/Database/mysql/Connection.php
1 method overrides Connection::getServerVersion()
Connection::getServerVersion in core/modules/system/tests/modules/driver_test/src/Driver/Database/DrivertestMysqlDeprecatedVersion/Connection.php
Gets the server version.

File

core/modules/mysql/src/Driver/Database/mysql/Connection.php, line 272

Class

Connection
MySQL implementation of \Drupal\Core\Database\Connection.

Namespace

Drupal\mysql\Driver\Database\mysql

Code

protected function getServerVersion() : string {
  if (!$this->serverVersion) {
    $this->serverVersion = $this
      ->query('SELECT VERSION()')
      ->fetchField();
  }
  return $this->serverVersion;
}