Class IfProcedureExistsTask
Checks if a procedure exists.
Implements
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
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
Type | Name | Description |
---|---|---|
string | procedureName |
Methods
IsExisting(IConnectionManager, string)
Ćhecks if the procedure exists
Declaration
public static bool IsExisting(IConnectionManager connectionManager, string procedureName)
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
public static bool IsExisting(string procedureName)
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 |