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
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: ETLBox.ControlFlow
Assembly: ETLBox.dll
Syntax
public sealed class GetDatabaseListTask : GetListTask, ILoggableTask
Examples
GetDatabaseListTask.List();
Constructors
GetDatabaseListTask()
Declaration
public GetDatabaseListTask()
Examples
GetDatabaseListTask.List();
Properties
TaskName
Declaration
public override string TaskName { get; set; }
Property Value
Type | Description |
---|---|
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<T><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<T><ObjectNameDescriptor> | A list of all user database names |