You are here

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

Same name and namespace in other branches
  1. 8 drivers/lib/Drupal/Driver/Database/sqlsrv/Schema.php \Drupal\Driver\Database\sqlsrv\Schema::GetDefaultSchema()
  2. 3.0.x drivers/lib/Drupal/Driver/Database/sqlsrv/Schema.php \Drupal\Driver\Database\sqlsrv\Schema::getDefaultSchema()

Return the default schema.

Return value

mixed

3 calls to Schema::GetDefaultSchema()
Schema::changeField in drivers/lib/Drupal/Driver/Database/sqlsrv/Schema.php
Override DatabaseSchema::changeField().
Schema::CommentCreateOrUpdate in drivers/lib/Drupal/Driver/Database/sqlsrv/Schema.php
Create, update or remove a comment for a database object, transaction friendly.
Schema::CommentGet in drivers/lib/Drupal/Driver/Database/sqlsrv/Schema.php
Get the description property of a table or column.

File

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

Class

Schema

Namespace

Drupal\Driver\Database\sqlsrv

Code

public function GetDefaultSchema() {
  return $this->connection
    ->Scheme()
    ->GetDefaultSchema();
}