public function Connection::driver

Same name in this branch
  1. 8.x drupal/core/lib/Drupal/Core/Database/Connection.php \Drupal\Core\Database\Connection::driver()
  2. 8.x drupal/core/lib/Drupal/Core/Database/Driver/mysql/Connection.php \Drupal\Core\Database\Driver\mysql\Connection::driver()
  3. 8.x drupal/core/lib/Drupal/Core/Database/Driver/sqlite/Connection.php \Drupal\Core\Database\Driver\sqlite\Connection::driver()
  4. 8.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().

Overrides Connection::driver

File

drupal/core/lib/Drupal/Core/Database/Driver/mysql/Connection.php, line 133
Definition of Drupal\Core\Database\Driver\mysql\Connection

Class

Connection

Namespace

Drupal\Core\Database\Driver\mysql

Code

public function driver() {
  return 'mysql';
}