Class IfProcedureExistsTask
Checks if a procedure exists.
Implements
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: ETLBox.ControlFlow.Tasks
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 |
---|---|---|
System.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 |
System.String | procedureName | The procedure name that you want to check for existence |
Returns
Type | Description |
---|---|
System.Boolean | True if the procedure exists |
IsExisting(String)
Ćhecks if the procedure exists
Declaration
public static bool IsExisting(string procedureName)
Parameters
Type | Name | Description |
---|---|---|
System.String | procedureName | The procedure name that you want to check for existence |
Returns
Type | Description |
---|---|
System.Boolean | True if the procedure exists |