Title here
Summary here
Returns a list of all tables in the currently connected database.
Make sure to connect with the correct permissions!
public sealed class GetViewListTask : GetListTask, ILoggableTaskList<ETLBox.Helper.ObjectNameDescriptor> allviews = GetViewListTask.List();
foreach (var on in allviews) {
Console.WriteLine("Schema:" + on.UnquotatedSchemaName);
Console.WriteLine("ViewName:" + on.UnquotatedObjectName);
Console.WriteLine("Full qualified name:" + on.QuotatedFullName);
} public GetViewListTask()Runs sql code to determine all user database names.
public static List<ObjectNameDescriptor> ListAll()| Type | Description |
|---|---|
| List<ObjectNameDescriptor> | A list of all user database names |
Runs sql code to determine all user database names.
public static List<ObjectNameDescriptor> ListAll(IConnectionManager connectionManager)| Type | Name | Description |
|---|---|---|
| IConnectionManager | connectionManager | The connection manager of the server you want to connect |
| Type | Description |
|---|---|
| List<ObjectNameDescriptor> | A list of all user database names |