spring-framework / org.springframework.jdbc.core.metadata / CallMetaDataContext / matchInParameterValuesWithCallParameters

matchInParameterValuesWithCallParameters

open fun matchInParameterValuesWithCallParameters(parameterSource: SqlParameterSource): MutableMap<String, Any>

Match input parameter values with the parameters declared to be used in the call.

Parameters

parameterSource - the input values

Return
a Map containing the matched parameter names with the value taken from the input

open fun matchInParameterValuesWithCallParameters(inParameters: MutableMap<String, *>): MutableMap<String, *>

Match input parameter values with the parameters declared to be used in the call.

Parameters

inParameters - the input values

Return
a Map containing the matched parameter names with the value taken from the input

open fun matchInParameterValuesWithCallParameters(parameterValues: Array<Any>): MutableMap<String, *>