You are here

public function Schema::getTableIntrospection in Drupal driver for SQL Server and SQL Azure 8.2

Retrieve details about the table.

Parameters

string $table:

4 calls to Schema::getTableIntrospection()
Schema::createIndexSql in drivers/lib/Drupal/Driver/Database/sqlsrv/Schema.php
Returns the SQL needed (incomplete) to create and index. Supports XML indexes.
Schema::dropFieldRelatedObjects in drivers/lib/Drupal/Driver/Database/sqlsrv/Schema.php
Drop the related objects of a column (indexes, constraints, etc.).
Schema::fieldSetDefault in drivers/lib/Drupal/Driver/Database/sqlsrv/Schema.php
Override DatabaseSchema::fieldSetDefault().
Schema::introspectPrimaryKeyFields in drivers/lib/Drupal/Driver/Database/sqlsrv/Schema.php
Get the list of fields participating in the Primary Key

File

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

Class

Schema

Namespace

Drupal\Driver\Database\sqlsrv

Code

public function getTableIntrospection($table) {
  return $this->connection
    ->Scheme()
    ->TableDetailsGet($this
    ->prefixTable($table));
}