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)
Syntaxprotected static void ProcessJdbcParamsAndDiscreteValues(
Dictionary<string, string>? paramValues,
Dictionary<string, string>? discreteValues,
IReadOnlyList<ProviderProperty> providerProperties,
ParameterValueCollection providerValues
)
Protected Shared Sub ProcessJdbcParamsAndDiscreteValues (
paramValues As Dictionary(Of String, String),
discreteValues As Dictionary(Of String, String),
providerProperties As IReadOnlyList(Of ProviderProperty),
providerValues As ParameterValueCollection
)
protected:
static void ProcessJdbcParamsAndDiscreteValues(
Dictionary<String^, String^>^ paramValues,
Dictionary<String^, String^>^ discreteValues,
IReadOnlyList<ProviderProperty^>^ providerProperties,
ParameterValueCollection^ providerValues
)
static member ProcessJdbcParamsAndDiscreteValues :
paramValues : Dictionary<string, string> *
discreteValues : Dictionary<string, string> *
providerProperties : IReadOnlyList<ProviderProperty> *
providerValues : ParameterValueCollection -> unit
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.
RemarksThis method takes the paramValues and discreteValues updates the providerValues collection with the resolved values.
See Also