abstract public function Connection::driver

Same name in this branch
  1. 9.x drupal/core/lib/Drupal/Core/Database/Connection.php \Drupal\Core\Database\Connection::driver()
  2. 9.x drupal/core/lib/Drupal/Core/Database/Driver/mysql/Connection.php \Drupal\Core\Database\Driver\mysql\Connection::driver()
  3. 9.x drupal/core/lib/Drupal/Core/Database/Driver/sqlite/Connection.php \Drupal\Core\Database\Driver\sqlite\Connection::driver()
  4. 9.x drupal/core/lib/Drupal/Core/Database/Driver/pgsql/Connection.php \Drupal\Core\Database\Driver\pgsql\Connection::driver()

Returns the type of database driver.

This is not necessarily the same as the type of the database itself. For instance, there could be two MySQL drivers, mysql and mysql_mock. This function would return different values for each, but both would return "mysql" for databaseType().

1 call to Connection::driver()
Connection::getDriverClass in drupal/core/lib/Drupal/Core/Database/Connection.php
Gets the driver-specific override class if any for the specified class.
3 methods override Connection::driver()
Connection::driver in drupal/core/lib/Drupal/Core/Database/Driver/mysql/Connection.php
Returns the type of database driver.
Connection::driver in drupal/core/lib/Drupal/Core/Database/Driver/sqlite/Connection.php
Returns the type of database driver.
Connection::driver in drupal/core/lib/Drupal/Core/Database/Driver/pgsql/Connection.php
Returns the type of database driver.

File

drupal/core/lib/Drupal/Core/Database/Connection.php, line 1075
Definition of Drupal\Core\Database\Connection

Class

Connection
Base Database API class.

Namespace

Drupal\Core\Database

Code

public abstract function driver();