You are here

public function Connection::getFullQualifiedTableName in Drupal 10

Same name in this branch
  1. 10 core/modules/sqlite/src/Driver/Database/sqlite/Connection.php \Drupal\sqlite\Driver\Database\sqlite\Connection::getFullQualifiedTableName()
  2. 10 core/modules/pgsql/src/Driver/Database/pgsql/Connection.php \Drupal\pgsql\Driver\Database\pgsql\Connection::getFullQualifiedTableName()

File

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

Class

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

Namespace

Drupal\sqlite\Driver\Database\sqlite

Code

public function getFullQualifiedTableName($table) {
  $prefix = $this
    ->tablePrefix($table);

  // Don't include the SQLite database file name as part of the table name.
  return $prefix . $table;
}