You are here

protected function Schema::prefixTable in Drupal driver for SQL Server and SQL Azure 8.2

3 calls to Schema::prefixTable()
Schema::getColumnIntrospection in drivers/lib/Drupal/Driver/Database/sqlsrv/Schema.php
Get details about a column.
Schema::getTableIntrospection in drivers/lib/Drupal/Driver/Database/sqlsrv/Schema.php
Retrieve details about the table.
Schema::getTableIntrospectionInvalidate in drivers/lib/Drupal/Driver/Database/sqlsrv/Schema.php
Clear introspection cache for a specific table.

File

drivers/lib/Drupal/Driver/Database/sqlsrv/Schema.php, line 92
Definition of Drupal\Driver\Database\sqlsrv\Schema

Class

Schema

Namespace

Drupal\Driver\Database\sqlsrv

Code

protected function prefixTable($table) {
  return $this->connection
    ->prefixTables("{{$table}}");
}