You are here

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

Get details about a column.

Parameters

string $table:

string|array $column:

Return value

array

1 call to Schema::getColumnIntrospection()
Schema::addUniqueKey in drivers/lib/Drupal/Driver/Database/sqlsrv/Schema.php
Override DatabaseSchema::addUniqueKey().

File

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

Class

Schema

Namespace

Drupal\Driver\Database\sqlsrv

Code

public function getColumnIntrospection($table, $columns) {
  return $this->connection
    ->Scheme()
    ->ColumnDetailsGet($this
    ->prefixTable($table), $columns);
}