Interface IConnectionManagerDbObjects

Namespace: ETLBox
Assembly: ETLBox.dll
Syntax
    public interface IConnectionManagerDbObjects

Methods

CheckIfTableOrViewExists(string)

Describes how the connection manager can check if a table or view exists

Declaration
    bool CheckIfTableOrViewExists(string objectName)
Parameters
TypeNameDescription
stringobjectName

The formatted table or view name

Returns
TypeDescription
bool

True if the table or view exists

ReadTableDefinition(ObjectNameDescriptor)

Describe how the table meta data can be read from the database

Declaration
    TableDefinition ReadTableDefinition(ObjectNameDescriptor TN)
Parameters
TypeNameDescription
ObjectNameDescriptorTN

The formatted table name

Returns
TypeDescription
TableDefinition

The definition of the table, containing column names, types, etc.