Interface DBConnection
-
public interface DBConnection
The interfaceDBConnection
represents a single DB connection object returned from the Intelligence Server.- Since:
- MicroStrategy Web 9.0.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getConnectionID()
Returns the GUID of the DB connection instance.java.lang.String
getConnectionName()
Returns the name of the DB connection.int
getDBConnectionNumber()
Returns the unique identifier for the DB connection.java.lang.String
getInstanceId()
Returns the database instance ID.java.lang.String
getInstanceName()
Returns the database instance name.java.lang.String
getLoginName()
Returns the DB login name.java.lang.String
getServerName()
Returns the server name from which the DB connection information is obtained.int
getStatus()
Returns the DB connection status, a value fromEnumDSSXMLDBConnectionStatus
java.lang.String
getUserName()
Returns the user name for the DB connection.
-
-
-
Method Detail
-
getDBConnectionNumber
int getDBConnectionNumber()
Returns the unique identifier for the DB connection.- Returns:
- the unique identifier for the DB connection.
-
getStatus
int getStatus()
Returns the DB connection status, a value fromEnumDSSXMLDBConnectionStatus
- Returns:
- the DB connection status.
-
getInstanceName
java.lang.String getInstanceName()
Returns the database instance name.- Returns:
- the database instance name.
-
getInstanceId
java.lang.String getInstanceId()
Returns the database instance ID.- Returns:
- the database instance ID.
-
getUserName
java.lang.String getUserName()
Returns the user name for the DB connection.- Returns:
- the user name for the DB connection
-
getLoginName
java.lang.String getLoginName()
Returns the DB login name.- Returns:
- the DB login name.
-
getServerName
java.lang.String getServerName()
Returns the server name from which the DB connection information is obtained.- Returns:
- the server name
-
getConnectionID
java.lang.String getConnectionID()
Returns the GUID of the DB connection instance.- Returns:
- the GUID of the DB connection instance.
-
getConnectionName
java.lang.String getConnectionName()
Returns the name of the DB connection.- Returns:
- The DB connection name.
-
-