Class IfProcedureExistsTask
Checks if a procedure exists.
Inheritance
IfProcedureExistsTask
Namespace: ETLBox.ControlFlow
Assembly: ETLBox.dll
Syntax#
Constructors
IfProcedureExistsTask()#
Declaration
IfProcedureExistsTask(string)#
Declaration
Parameters
Type | Name | Description |
---|
string | procedureName | |
Methods
IsExisting(IConnectionManager, string)#
Ćhecks if the procedure exists
Declaration
Parameters
Type | Name | Description |
---|
IConnectionManager | connectionManager | The connection manager of the database you want to connect |
string | procedureName | The procedure name that you want to check for existence |
Returns
Type | Description |
---|
bool | True if the procedure exists |
IsExisting(string)#
Ćhecks if the procedure exists
Declaration
Parameters
Type | Name | Description |
---|
string | procedureName | The procedure name that you want to check for existence |
Returns
Type | Description |
---|
bool | True if the procedure exists |
Implements#