Title here
Summary here
Checks if a table exists.
public sealed class IfTableOrViewExistsTask : IfExistsTask, ILoggableTask public IfTableOrViewExistsTask() public IfTableOrViewExistsTask(IConnectionManager connectionManager, string tableName)| Type | Name | Description |
|---|---|---|
| IConnectionManager | connectionManager | |
| string | tableName |
public IfTableOrViewExistsTask(string tableName)| Type | Name | Description |
|---|---|---|
| string | tableName |
Ćhecks if the table or view exists
public static bool IsExisting(IConnectionManager connectionManager, string objectName)| 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 |
| Type | Description |
|---|---|
| bool | True if the table or view exists |
Ćhecks if the table or view exists
public static bool IsExisting(string objectName)| Type | Name | Description |
|---|---|---|
| string | objectName | The table or view name that you want to check for existence |
| Type | Description |
|---|---|
| bool | True if the table or view exists |