Same name and namespace in other branches
  1. 10 core/lib/Drupal.php \Drupal::database()
  2. 9 core/lib/Drupal.php \Drupal::database()

Returns the current primary database.

Return value

\Drupal\Core\Database\Connection The current active database's master connection.

65 calls to Drupal::database()
BasicSyntaxTest::testGetFullQualifiedTableName in core/tests/Drupal/KernelTests/Core/Database/BasicSyntaxTest.php
Tests \Drupal\Core\Database\Connection::getFullQualifiedTableName().
block_content_update_8400 in core/modules/block_content/block_content.install
Add a publishing status field for block_content entities.
Breadcrumb404Test::getBreadcrumbCacheEntries in core/tests/Drupal/FunctionalTests/Breadcrumb/Breadcrumb404Test.php
Gets the breadcrumb cache entries.
BulkDeleteTest::testPurgeWithDeletedAndActiveField in core/modules/field/tests/src/Kernel/BulkDeleteTest.php
Tests that recreating a field with the name as a deleted field works.
callback_batch_operation in core/lib/Drupal/Core/Form/form.api.php
Perform a single batch operation.

... See full list

File

core/lib/Drupal.php, line 300
Contains \Drupal.

Class

Drupal
Static Service Container wrapper.

Code

public static function database() {
  return static::getContainer()
    ->get('database');
}