abstract public function Connection::driver in Zircon Profile 8
Same name in this branch
- 8 core/lib/Drupal/Core/Database/Connection.php \Drupal\Core\Database\Connection::driver()
- 8 core/lib/Drupal/Core/Database/Driver/sqlite/Connection.php \Drupal\Core\Database\Driver\sqlite\Connection::driver()
- 8 core/lib/Drupal/Core/Database/Driver/pgsql/Connection.php \Drupal\Core\Database\Driver\pgsql\Connection::driver()
- 8 core/lib/Drupal/Core/Database/Driver/mysql/Connection.php \Drupal\Core\Database\Driver\mysql\Connection::driver()
Same name and namespace in other branches
- 8.0 core/lib/Drupal/Core/Database/Connection.php \Drupal\Core\Database\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().
Return value
string The type of database driver.
1 call to Connection::driver()
- Connection::getDriverClass in core/
lib/ Drupal/ Core/ Database/ Connection.php - Gets the driver-specific override class if any for the specified class.
4 methods override Connection::driver()
- Connection::driver in core/
lib/ Drupal/ Core/ Database/ Driver/ sqlite/ Connection.php - Returns the type of database driver.
- Connection::driver in core/
lib/ Drupal/ Core/ Database/ Driver/ pgsql/ Connection.php - Returns the type of database driver.
- Connection::driver in core/
lib/ Drupal/ Core/ Database/ Driver/ mysql/ Connection.php - Returns the type of database driver.
- StubConnection::driver in core/
tests/ Drupal/ Tests/ Core/ Database/ Stub/ StubConnection.php - Returns the type of database driver.
File
- core/
lib/ Drupal/ Core/ Database/ Connection.php, line 1272 - Contains \Drupal\Core\Database\Connection.
Class
- Connection
- Base Database API class.
Namespace
Drupal\Core\DatabaseCode
public abstract function driver();