Title here
Summary here
Drops a view. Use DropIfExists to drop a view only if it exists.
public sealed class DropViewTask : DropTask<IfTableOrViewExistsTask>, ILoggableTask public DropViewTask() public DropViewTask(string viewName)| Type | Name | Description |
|---|---|---|
| string | viewName |
Drops a view
public static void Drop(IConnectionManager connectionManager, string viewName)| Type | Name | Description |
|---|---|---|
| IConnectionManager | connectionManager | The connection manager of the database you want to connect |
| string | viewName | Name of the view to drop |
Drops a view.
public static void Drop(string viewName)| Type | Name | Description |
|---|---|---|
| string | viewName | Name of the view to drop |
Drops a view if the view exists.
public static void DropIfExists(IConnectionManager connectionManager, string viewName)| Type | Name | Description |
|---|---|---|
| IConnectionManager | connectionManager | The connection manager of the database you want to connect |
| string | viewName | Name of the view to drop |
Drops a view if the view exists.
public static void DropIfExists(string viewName)| Type | Name | Description |
|---|---|---|
| string | viewName | Name of the view to drop |