Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. Connection.php

function Connection::getFullQualifiedTableName

Same name in this branch
  1. 11.1.x core/lib/Drupal/Core/Database/Connection.php \Drupal\Core\Database\Connection::getFullQualifiedTableName()
  2. 11.1.x core/modules/pgsql/src/Driver/Database/pgsql/Connection.php \Drupal\pgsql\Driver\Database\pgsql\Connection::getFullQualifiedTableName()

Overrides Connection::getFullQualifiedTableName

File

core/modules/sqlite/src/Driver/Database/sqlite/Connection.php, line 417

Class

Connection
SQLite implementation of \Drupal\Core\Database\Connection.

Namespace

Drupal\sqlite\Driver\Database\sqlite

Code

public function getFullQualifiedTableName($table) {
    $prefix = $this->getPrefix();
    // Don't include the SQLite database file name as part of the table name.
    return $prefix . $table;
}
RSS feed
Powered by Drupal