Class IfProcedureExistsTask

Checks if a procedure exists.

Inheritance
IfProcedureExistsTask
Implements
Namespace: ETLBox.ControlFlow
Assembly: ETLBox.dll
Syntax
    public sealed class IfProcedureExistsTask : IfExistsTask, ILoggableTask

Constructors

IfProcedureExistsTask()

Declaration
    public IfProcedureExistsTask()

IfProcedureExistsTask(string)

Declaration
    public IfProcedureExistsTask(string procedureName)
Parameters
TypeNameDescription
stringprocedureName

Methods

IsExisting(IConnectionManager, string)

Ćhecks if the procedure exists

Declaration
    public static bool IsExisting(IConnectionManager connectionManager, string procedureName)
Parameters
TypeNameDescription
IConnectionManagerconnectionManager

The connection manager of the database you want to connect

stringprocedureName

The procedure name that you want to check for existence

Returns
TypeDescription
bool

True if the procedure exists

IsExisting(string)

Ćhecks if the procedure exists

Declaration
    public static bool IsExisting(string procedureName)
Parameters
TypeNameDescription
stringprocedureName

The procedure name that you want to check for existence

Returns
TypeDescription
bool

True if the procedure exists

Implements