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