Connection::$driver |
property |
core/tests/fixtures/database_drivers/module/core_fake/src/Driver/Database/CoreFake/Connection.php |
Public property so we can test driver loading mechanism. |
Connection::$driverClasses |
property |
core/lib/Drupal/Core/Database/Connection.php |
Index of what driver-specific class to use for various operations. |
Connection::$enabledEvents |
property |
core/lib/Drupal/Core/Database/Connection.php |
Tracks the database API events to be dispatched. |
Connection::$escapedAliases |
property |
core/lib/Drupal/Core/Database/Connection.php |
List of escaped aliases names, keyed by unescaped aliases. |
Connection::$escapedFields |
property |
core/lib/Drupal/Core/Database/Connection.php |
List of escaped field names, keyed by unescaped names. |
Connection::$escapedTables |
property |
core/lib/Drupal/Core/Database/Connection.php |
List of escaped table names, keyed by unescaped names. |
Connection::$identifierQuotes |
property |
core/lib/Drupal/Core/Database/Connection.php |
The identifier quote characters for the database type. |
Connection::$identifierQuotes |
property |
core/tests/fixtures/database_drivers/custom/fake/Connection.php |
|
Connection::$identifierQuotes |
property |
core/modules/sqlite/src/Driver/Database/sqlite/Connection.php |
|
Connection::$identifierQuotes |
property |
core/modules/pgsql/src/Driver/Database/pgsql/Connection.php |
|
Connection::$identifierQuotes |
property |
core/modules/mysql/src/Driver/Database/mysql/Connection.php |
|
Connection::$key |
property |
core/lib/Drupal/Core/Database/Connection.php |
The key representing this connection. |
Connection::$logger |
property |
core/lib/Drupal/Core/Database/Connection.php |
The current database logging object for this connection. |
Connection::$needsCleanup |
property |
core/modules/mysql/src/Driver/Database/mysql/Connection.php |
Flag to indicate if the cleanup function in __destruct() should run. |
Connection::$postgresqlConditionOperatorMap |
property |
core/modules/pgsql/src/Driver/Database/pgsql/Connection.php |
A map of condition operators to PostgreSQL operators. |
Connection::$prefix |
property |
core/lib/Drupal/Core/Database/Connection.php |
The prefix used by this database connection. |
Connection::$prefixes |
property |
core/lib/Drupal/Core/Database/Connection.php |
The prefixes used by this database connection. |
Connection::$prefixReplace |
property |
core/lib/Drupal/Core/Database/Connection.php |
List of replacement values for use in prefixTables(). |
Connection::$prefixSearch |
property |
core/lib/Drupal/Core/Database/Connection.php |
List of search values for use in prefixTables(). |
Connection::$rootTransactionEndCallbacks |
property |
core/lib/Drupal/Core/Database/Connection.php |
Post-root (non-nested) transaction commit callbacks. |
Connection::$savepoints |
property |
core/modules/pgsql/src/Driver/Database/pgsql/Connection.php |
An array of transaction savepoints. |
Connection::$schema |
property |
core/lib/Drupal/Core/Database/Connection.php |
The schema object for this connection. |
Connection::$serverVersion |
property |
core/modules/mysql/src/Driver/Database/mysql/Connection.php |
Stores the server version after it has been retrieved from the database. |
Connection::$sqliteConditionOperatorMap |
property |
core/modules/sqlite/src/Driver/Database/sqlite/Connection.php |
A map of condition operators to SQLite operators. |
Connection::$statementClass |
property |
core/tests/fixtures/database_drivers/custom/fake/Connection.php |
|
Connection::$statementWrapperClass |
property |
core/tests/fixtures/database_drivers/custom/fake/Connection.php |
|
Connection::$statementWrapperClass |
property |
core/modules/sqlite/src/Driver/Database/sqlite/Connection.php |
|
Connection::$statementWrapperClass |
property |
core/modules/pgsql/src/Driver/Database/pgsql/Connection.php |
|
Connection::$statementWrapperClass |
property |
core/modules/mysql/src/Driver/Database/mysql/Connection.php |
|
Connection::$statementWrapperClass |
property |
core/lib/Drupal/Core/Database/Connection.php |
The name of the StatementWrapper class for this connection. |
Connection::$tableDropped |
property |
core/modules/sqlite/src/Driver/Database/sqlite/Connection.php |
Whether or not a table has been dropped this request. |
Connection::$tablePlaceholderReplacements |
property |
core/lib/Drupal/Core/Database/Connection.php |
Replacements to fully qualify {table} placeholders in SQL strings. |
Connection::$target |
property |
core/lib/Drupal/Core/Database/Connection.php |
The database target this connection is for. |
Connection::$transactionalDDLSupport |
property |
core/lib/Drupal/Core/Database/Connection.php |
Whether this database connection supports transactional DDL. |
Connection::$transactionalDDLSupport |
property |
core/modules/sqlite/src/Driver/Database/sqlite/Connection.php |
|
Connection::$transactionalDDLSupport |
property |
core/modules/pgsql/src/Driver/Database/pgsql/Connection.php |
|
Connection::$transactionLayers |
property |
core/lib/Drupal/Core/Database/Connection.php |
Tracks the number of "layers" of transactions currently active. |
Connection::$transactionManager |
property |
core/lib/Drupal/Core/Database/Connection.php |
The transaction manager. |
Connection::$unprefixedTablesMap |
property |
core/lib/Drupal/Core/Database/Connection.php |
List of un-prefixed table names, keyed by prefixed table names. |
Connection::$willRollback |
property |
core/modules/sqlite/src/Driver/Database/sqlite/Connection.php |
Whether or not the active transaction (if any) will be rolled back. |
Connection::ACCESS_DENIED |
constant |
core/modules/mysql/src/Driver/Database/mysql/Connection.php |
Error code for "Access denied" error. |
Connection::addRootTransactionEndCallback |
function |
core/lib/Drupal/Core/Database/Connection.php |
Adds a root transaction end callback. |
Connection::addSavepoint |
function |
core/modules/pgsql/src/Driver/Database/pgsql/Connection.php |
Add a new savepoint with a unique name. |
Connection::attachDatabase |
function |
core/modules/sqlite/src/Driver/Database/sqlite/Connection.php |
|
Connection::attachDatabase |
function |
core/lib/Drupal/Core/Database/Connection.php |
Allows the connection to access additional databases. |
Connection::clientVersion |
function |
core/lib/Drupal/Core/Database/Connection.php |
Returns the version of the database client. |
Connection::commit |
function |
core/lib/Drupal/Core/Database/Connection.php |
Throws an exception to deny direct access to transaction commits. |
Connection::commitAll |
function |
core/lib/Drupal/Core/Database/Connection.php |
Commits all the open transactions. |
Connection::condition |
function |
core/lib/Drupal/Core/Database/Connection.php |
Prepares and returns a CONDITION query object. |
Connection::condition |
function |
core/tests/fixtures/database_drivers/custom/fake/Connection.php |
|