Java org.springframework.jdbc.core.namedparam MapSqlParameterSource fields, constructors, methods, implement or subclass

Example usage for Java org.springframework.jdbc.core.namedparam MapSqlParameterSource fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.springframework.jdbc.core.namedparam MapSqlParameterSource.

The text is from its open source code.

Constructor

MapSqlParameterSource()
Create an empty MapSqlParameterSource, with values to be added via addValue .
MapSqlParameterSource(String paramName, @Nullable Object value)
Create a new MapSqlParameterSource, with one value comprised of the supplied arguments.
MapSqlParameterSource(@Nullable Map values)
Create a new MapSqlParameterSource based on a Map.

Method

MapSqlParameterSourceaddValue(String paramName, @Nullable Object value)
Add a parameter to this parameter source.
MapSqlParameterSourceaddValue(String paramName, @Nullable Object value, int sqlType)
Add a parameter to this parameter source.
MapSqlParameterSourceaddValues(@Nullable Map values)
Add a Map of parameters to this parameter source.
ObjectgetValue(String paramName)
MapgetValues()
Expose the current parameter values as read-only Map.