You are here

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

Drop a Function.

Parameters

string $name:

File

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

Class

Scheme

Namespace

Drupal\Driver\Database\sqlsrv

Code

public function FunctionDrop($name) {
  $this->cnn
    ->query_execute("DROP FUNCTION {$name}");
}