You are here

public function Scheme::StatisticsDrop in Drupal driver for SQL Server and SQL Azure 8.2

Drop a statistic

Parameters

string $table: Table name.

string $statistics: Statistics name.

File

drivers/lib/Drupal/Driver/Database/sqlsrv/Scheme.php, line 131

Class

Scheme

Namespace

Drupal\Driver\Database\sqlsrv

Code

public function StatisticsDrop($table, $statistics) {
  $this->cnn
    ->query_execute("DROP STATISTICS {$table}.{$statistics}");
}