DataProviderProcessJdbcParamsAndDiscreteValues Method

Processes JDBC discrete values and updates the provided collections with resolved property values.

Namespace:  Dundas.BI.Data.DataProviders
Assembly:  Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (25.4.0.1000)
Syntax
protected static void ProcessJdbcParamsAndDiscreteValues(
	Dictionary<string, string>? paramValues,
	Dictionary<string, string>? discreteValues,
	IReadOnlyList<ProviderProperty> providerProperties,
	ParameterValueCollection providerValues
)

Parameters

paramValues
Type: System.Collections.GenericDictionaryString, String
A dictionary of key-value pairs that comes from the JDBC connection string parameters. Can be .
discreteValues
Type: System.Collections.GenericDictionaryString, String
A dictionary containing discrete JDBC property values, where the key is the property name and the value is the property value. Can be .
providerProperties
Type: System.Collections.GenericIReadOnlyListProviderProperty
A read-only list of provider properties that define the provider-specific properties.
providerValues
Type: Dundas.BI.Data.ParametersParameterValueCollection
A collection of parameter values to be updated with resolved property values.
Remarks
This method takes the paramValues and discreteValues updates the providerValues collection with the resolved values.
See Also