public function Connection::version in Drupal 9
Same name in this branch
- 9 core/lib/Drupal/Core/Database/Connection.php \Drupal\Core\Database\Connection::version()
- 9 core/lib/Drupal/Core/Database/Driver/mysql/Connection.php \Drupal\Core\Database\Driver\mysql\Connection::version()
- 9 core/modules/system/tests/modules/driver_test/src/Driver/Database/DrivertestMysqlDeprecatedVersion/Connection.php \Drupal\driver_test\Driver\Database\DrivertestMysqlDeprecatedVersion\Connection::version()
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/Database/Connection.php \Drupal\Core\Database\Connection::version()
Returns the version of the database server.
1 method overrides Connection::version()
- Connection::version in core/
lib/ Drupal/ Core/ Database/ Driver/ mysql/ Connection.php - Returns the version of the database server.
File
- core/
lib/ Drupal/ Core/ Database/ Connection.php, line 1779
Class
- Connection
- Base Database API class.
Namespace
Drupal\Core\DatabaseCode
public function version() {
return $this->connection
->getAttribute(\PDO::ATTR_SERVER_VERSION);
}