function Connection::getFullQualifiedTableName

Get a fully qualified table name.

Parameters

string $table: The name of the table in question.

Return value

string

Overrides Connection::getFullQualifiedTableName

File

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

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

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.