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