function Connection::clientVersion
Same name in other branches
- 9 core/lib/Drupal/Core/Database/Connection.php \Drupal\Core\Database\Connection::clientVersion()
- 8.9.x core/lib/Drupal/Core/Database/Connection.php \Drupal\Core\Database\Connection::clientVersion()
- 11.x core/lib/Drupal/Core/Database/Connection.php \Drupal\Core\Database\Connection::clientVersion()
Returns the version of the database client.
Assumes the client connection is \PDO. Non-PDO based drivers need to override this method.
Return value
string
File
-
core/
lib/ Drupal/ Core/ Database/ Connection.php, line 1778
Class
- Connection
- Base Database API class.
Namespace
Drupal\Core\DatabaseCode
public function clientVersion() {
return $this->connection
->getAttribute(\PDO::ATTR_CLIENT_VERSION);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.