Enum AdbTableType
The type of a table-like database object, and whether it exists. Returned by GetTableTypeAsync(String), which can be accessed via TableInformation.
Namespace: actionETL.Adb
Assembly: actionETL.dll
Syntax
public enum AdbTableType
Fields
| Name | Description |
|---|---|
| NotFound | The table-like database object was not found. Either it doesn't exist, or you don't have sufficient privileges to see it. |
| Table | The database object is a regular table. |
| TableValuedFunction | The database object is a table-valued function. |
| Unknown | The database object was found but its type was not recognized. |
| View | The database object is a view. |