Connection::getUnprefixedTablesMap

public Connection::getUnprefixedTablesMap() Gets a list of individually prefixed table names. Return value array An array of un-prefixed table names, keyed by their fully qualified table names (i.e. prefix + table_name). File core/lib/Drupal/Core/Database/Connection.php, line 355 Class Connection Base Database API class. Namespace Drupal\Core\Database Code public function getUnprefixedTablesMap() { return $this->unprefixedTablesMap; }

Connection::getTarget

public Connection::getTarget() Returns the target this connection is associated with. Return value string|null The target string of this connection, or NULL if no target is set. File core/lib/Drupal/Core/Database/Connection.php, line 415 Class Connection Base Database API class. Namespace Drupal\Core\Database Code public function getTarget() { return $this->target; }

Connection::getLogger

public Connection::getLogger() Gets the current logging object for this connection. Return value \Drupal\Core\Database\Log|null The current logging object for this connection. If there isn't one, NULL is returned. File core/lib/Drupal/Core/Database/Connection.php, line 458 Class Connection Base Database API class. Namespace Drupal\Core\Database Code public function getLogger() { return $this->logger; }

Connection::getKey

public Connection::getKey() Returns the key this connection is associated with. Return value string|null The key of this connection, or NULL if no key is set. File core/lib/Drupal/Core/Database/Connection.php, line 437 Class Connection Base Database API class. Namespace Drupal\Core\Database Code public function getKey() { return $this->key; }

Connection::getFullQualifiedTableName

public Connection::getFullQualifiedTableName($table) Get a fully qualified table name. Parameters string $table: The name of the table in question. Return value string Overrides Connection::getFullQualifiedTableName File core/lib/Drupal/Core/Database/Driver/sqlite/Connection.php, line 416 Class Connection SQLite implementation of \Drupal\Core\Database\Connection. Namespace Drupal\Core\Database\Driver\sqlite Code public function getFullQualifiedTableName($table) { $prefix = $this-&g

Connection::getFullQualifiedTableName

public Connection::getFullQualifiedTableName($table) Get a fully qualified table name. Parameters string $table: The name of the table in question. Return value string Overrides Connection::getFullQualifiedTableName File core/lib/Drupal/Core/Database/Driver/pgsql/Connection.php, line 360 Class Connection PostgreSQL implementation of \Drupal\Core\Database\Connection. Namespace Drupal\Core\Database\Driver\pgsql Code public function getFullQualifiedTableName($table) { $options = $this

Connection::getFullQualifiedTableName

public Connection::getFullQualifiedTableName($table) Get a fully qualified table name. Parameters string $table: The name of the table in question. Return value string File core/lib/Drupal/Core/Database/Connection.php, line 367 Class Connection Base Database API class. Namespace Drupal\Core\Database Code public function getFullQualifiedTableName($table) { $options = $this->getConnectionOptions(); $prefix = $this->tablePrefix($table); return $options['database'] . '.' . $p

Connection::getDriverClass

public Connection::getDriverClass($class) Gets the driver-specific override class if any for the specified class. Parameters string $class: The class for which we want the potentially driver-specific class. Return value string The name of the class that should be used for this driver. File core/lib/Drupal/Core/Database/Connection.php, line 754 Class Connection Base Database API class. Namespace Drupal\Core\Database Code public function getDriverClass($class) { if (empty($this->d

Connection::getConnectionOptions

public Connection::getConnectionOptions() Returns the connection information for this connection object. Note that Database::getConnectionInfo() is for requesting information about an arbitrary database connection that is defined. This method is for requesting the connection information of this specific open connection object. Return value array An array of the connection information. The exact list of properties is driver-dependent. File core/lib/Drupal/Core/Database/Connection.php, line 269

Connection::getAttachedDatabases

public Connection::getAttachedDatabases() Gets all the attached databases. Return value array An array of attached database names. See also \Drupal\Core\Database\Driver\sqlite\Connection::__construct() File core/lib/Drupal/Core/Database/Driver/sqlite/Connection.php, line 184 Class Connection SQLite implementation of \Drupal\Core\Database\Connection. Namespace Drupal\Core\Database\Driver\sqlite Code public function getAttachedDatabases() { return $this->attachedDatabases; }