Class GetDatabaseListTask
Returns a list of all user databases on the server. Make sure to connect with the correct permissions! In MySql, this will return a list of all schemas.
Implements
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: ETLBox.ControlFlow.Tasks
Assembly: ETLBox.dll
Syntax
public sealed class GetDatabaseListTask : GetListTask, ILoggableTask
Examples
GetDatabaseListTask.List();
Constructors
GetDatabaseListTask()
Declaration
public GetDatabaseListTask()
Properties
TaskName
Declaration
public override string TaskName { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Overrides
Methods
ListAll()
Runs sql code to determine all user database names.
Declaration
public static List<ObjectNameDescriptor> ListAll()
Returns
Type | Description |
---|---|
System.Collections.Generic.List<ObjectNameDescriptor> | A list of all user database names |
ListAll(IConnectionManager)
Runs sql code to determine all user database names.
Declaration
public static List<ObjectNameDescriptor> ListAll(IConnectionManager connectionManager)
Parameters
Type | Name | Description |
---|---|---|
IConnectionManager | connectionManager | The connection manager of the server you want to connect |
Returns
Type | Description |
---|---|
System.Collections.Generic.List<ObjectNameDescriptor> | A list of all user database names |