Interface IConnectionManagerDbObjects
Namespace: ETLBox.Connection
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
Type | Name | Description |
---|---|---|
string | objectName | The formatted table or view name |
Returns
Type | Description |
---|---|
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
Type | Name | Description |
---|---|---|
ObjectNameDescriptor | TN | The formatted table name |
Returns
Type | Description |
---|---|
TableDefinition | The definition of the table, containing column names, types, etc. |