Connection |
class |
drupal/core/lib/Drupal/Core/Database/Connection.php |
Base Database API class. |
Connection |
class |
drupal/core/lib/Drupal/Core/Database/Driver/sqlite/Connection.php |
Specific SQLite implementation of DatabaseConnection. |
Connection |
class |
drupal/core/lib/Drupal/Core/Database/Driver/pgsql/Connection.php |
|
Connection |
class |
drupal/core/lib/Drupal/Core/Database/Driver/mysql/Connection.php |
|
SSH::connect |
function |
drupal/core/lib/Drupal/Core/FileTransfer/SSH.php |
Implements Drupal\Core\FileTransfer\FileTransfer::connect(). |
Connection.php |
file |
drupal/core/lib/Drupal/Core/Database/Connection.php |
Definition of Drupal\Core\Database\Connection |
Connection.php |
file |
drupal/core/lib/Drupal/Core/Database/Driver/sqlite/Connection.php |
Definition of Drupal\Core\Database\Driver\sqlite\Connection |
Connection.php |
file |
drupal/core/lib/Drupal/Core/Database/Driver/mysql/Connection.php |
Definition of Drupal\Core\Database\Driver\mysql\Connection |
Connection.php |
file |
drupal/core/lib/Drupal/Core/Database/Driver/pgsql/Connection.php |
Definition of Drupal\Core\Database\Driver\pgsql\Connection |
ConnectionTest |
class |
drupal/core/modules/system/lib/Drupal/system/Tests/Database/ConnectionTest.php |
Tests connection management. |
Tasks::connect |
function |
drupal/core/lib/Drupal/Core/Database/Install/Tasks.php |
Check if we can connect to the database. |
Tasks::connect |
function |
drupal/core/lib/Drupal/Core/Database/Driver/mysql/Install/Tasks.php |
Check database connection and attempt to create database if the database is
missing. |
Local::connect |
function |
drupal/core/lib/Drupal/Core/FileTransfer/Local.php |
Implements Drupal\Core\FileTransfer\FileTransfer::connect(). |
Tasks::connect |
function |
drupal/core/lib/Drupal/Core/Database/Driver/sqlite/Install/Tasks.php |
Check database connection and attempt to create database if the database is
missing. |
Tasks::connect |
function |
drupal/core/lib/Drupal/Core/Database/Driver/pgsql/Install/Tasks.php |
Check database connection and attempt to create database if the database is
missing. |
Connection::open |
function |
drupal/core/lib/Drupal/Core/Database/Driver/mysql/Connection.php |
Opens a PDO connection. |
Connection::$key |
property |
drupal/core/lib/Drupal/Core/Database/Connection.php |
The key representing this connection. |
Connection::open |
function |
drupal/core/lib/Drupal/Core/Database/Connection.php |
Opens a PDO connection. |
Connection::open |
function |
drupal/core/lib/Drupal/Core/Database/Driver/sqlite/Connection.php |
Opens a PDO connection. |
Connection::open |
function |
drupal/core/lib/Drupal/Core/Database/Driver/pgsql/Connection.php |
Opens a PDO connection. |
Path::$connection |
property |
drupal/core/lib/Drupal/Core/Path/Path.php |
The database connection. |
Connection::query |
function |
drupal/core/lib/Drupal/Core/Database/Connection.php |
Executes a query string against the database. |
Connection::merge |
function |
drupal/core/lib/Drupal/Core/Database/Connection.php |
Prepares and returns a MERGE query object. |
Connection::quote |
function |
drupal/core/lib/Drupal/Core/Database/Connection.php |
Quotes a string for use in a query. |
Connection::query |
function |
drupal/core/lib/Drupal/Core/Database/Driver/pgsql/Connection.php |
Executes a query string against the database. |
RedisMock::connect |
function |
drupal/core/vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Tests/Profiler/Mock/RedisMock.php |
Add a server to connection pool |
Connection::driver |
function |
drupal/core/lib/Drupal/Core/Database/Driver/mysql/Connection.php |
Returns the type of database driver. |
Connection::nextId |
function |
drupal/core/lib/Drupal/Core/Database/Driver/mysql/Connection.php |
Retrieves an unique id from a given sequence. |
Query::$connection |
property |
drupal/core/lib/Drupal/Core/Database/Query/Query.php |
The connection object on which to run this query. |
ConnectionUnitTest |
class |
drupal/core/modules/system/lib/Drupal/system/Tests/Database/ConnectionUnitTest.php |
Tests management of database connections. |
Connection::setKey |
function |
drupal/core/lib/Drupal/Core/Database/Connection.php |
Tells this connection object what its key is. |
Connection::getKey |
function |
drupal/core/lib/Drupal/Core/Database/Connection.php |
Returns the key this connection is associated with. |
Query::$connection |
property |
drupal/core/modules/field_sql_storage/lib/Drupal/field_sql_storage/Entity/Query.php |
|
Connection::select |
function |
drupal/core/lib/Drupal/Core/Database/Connection.php |
Prepares and returns a SELECT query object. |
Connection::insert |
function |
drupal/core/lib/Drupal/Core/Database/Connection.php |
Prepares and returns an INSERT query object. |
Connection::update |
function |
drupal/core/lib/Drupal/Core/Database/Connection.php |
Prepares and returns an UPDATE query object. |
Connection::delete |
function |
drupal/core/lib/Drupal/Core/Database/Connection.php |
Prepares and returns a DELETE query object. |
Connection::schema |
function |
drupal/core/lib/Drupal/Core/Database/Connection.php |
Returns a DatabaseSchema object for manipulating the schema. |
Connection::driver |
function |
drupal/core/lib/Drupal/Core/Database/Driver/sqlite/Connection.php |
Returns the type of database driver. |
Connection::driver |
function |
drupal/core/lib/Drupal/Core/Database/Connection.php |
Returns the type of database driver. |
Connection::nextId |
function |
drupal/core/lib/Drupal/Core/Database/Driver/sqlite/Connection.php |
Retrieves an unique id from a given sequence. |
Connection::commit |
function |
drupal/core/lib/Drupal/Core/Database/Connection.php |
Throws an exception to deny direct access to transaction commits. |
Connection::nextId |
function |
drupal/core/lib/Drupal/Core/Database/Connection.php |
Retrieves an unique id from a given sequence. |
ConnectionTest.php |
file |
drupal/core/modules/system/lib/Drupal/system/Tests/Database/ConnectionTest.php |
Definition of Drupal\system\Tests\Database\ConnectionTest. |
Connection::driver |
function |
drupal/core/lib/Drupal/Core/Database/Driver/pgsql/Connection.php |
Returns the type of database driver. |
Connection::nextId |
function |
drupal/core/lib/Drupal/Core/Database/Driver/pgsql/Connection.php |
Retrive a the next id in a sequence. |
MockTestConnection |
class |
drupal/core/modules/system/lib/Drupal/system/Tests/FileTransfer/MockTestConnection.php |
Mock connection object for test case. |
ConnectionRegistry |
interface |
drupal/core/vendor/doctrine/common/lib/Doctrine/Common/Persistence/ConnectionRegistry.php |
Contract covering connection for a Doctrine persistence layer ManagerRegistry class to implement. |
Connection::$target |
property |
drupal/core/lib/Drupal/Core/Database/Connection.php |
The database target this connection is for. |
Connection::$logger |
property |
drupal/core/lib/Drupal/Core/Database/Connection.php |
The current database logging object for this connection. |