Same name and namespace in other branches
  1. 9 core/modules/sqlite/src/Driver/Database/sqlite/Connection.php \Drupal\sqlite\Driver\Database\sqlite\Connection::getFullQualifiedTableName()

File

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

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;
}