DataProviderGetJdbcProviderValues Method

Retrieves a list of JDBC provider values based on the specified data connector.

Namespace:  Dundas.BI.Data.DataProviders
Assembly:  Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (25.3.0.1000)
Syntax
public virtual ICollection<(JdbcConnectionStringComponent CompontentType, string JdbcPropertyName, ParameterValue? ParameterValue)> GetJdbcProviderValues(
	DataConnector dataConnector
)

Parameters

dataConnector
Type: Dundas.BI.Entities.DataConnectorsDataConnector
The data connector containing provider values to be mapped to JDBC connection string components.

Return Value

Type: ICollectionValueTupleJdbcConnectionStringComponent, String, ParameterValue
A list of tuples where each tuple contains the JDBC connection string component type, the corresponding JDBC property name (if applicable), and the parameter value.
Remarks
This method maps the provider values from the specified dataConnector to their corresponding JDBC connection string components based on the property descriptors. Only provider values associated with a valid JDBC connection string component are included in the returned list.
See Also