Uses of Class
org.springframework.jdbc.core.namedparam.MapSqlParameterSource

Packages that use MapSqlParameterSource
org.springframework.jdbc.core.namedparam JdbcTemplate variant with named parameter support. 
org.springframework.jdbc.core.simple Simplification layer over JdbcTemplate for Java 5 and above. 
 

Uses of MapSqlParameterSource in org.springframework.jdbc.core.namedparam
 

Methods in org.springframework.jdbc.core.namedparam that return MapSqlParameterSource
 MapSqlParameterSource MapSqlParameterSource.addValue(String paramName, Object value)
          Add a parameter to this parameter source.
 MapSqlParameterSource MapSqlParameterSource.addValue(String paramName, Object value, int sqlType)
          Add a parameter to this parameter source.
 MapSqlParameterSource MapSqlParameterSource.addValue(String paramName, Object value, int sqlType, String typeName)
          Add a parameter to this parameter source.
 MapSqlParameterSource MapSqlParameterSource.addValues(Map values)
          Add a Map of parameters to this parameter source.
 

Uses of MapSqlParameterSource in org.springframework.jdbc.core.simple
 

Methods in org.springframework.jdbc.core.simple with parameters of type MapSqlParameterSource
<T> T
SimpleJdbcCallOperations.executeFunction(Class<T> returnType, MapSqlParameterSource args)
          Execute the stored function and return the results obtained as an Object of the specified return type.
<T> T
SimpleJdbcCall.executeFunction(Class<T> returnType, MapSqlParameterSource args)
           
<T> T
SimpleJdbcCallOperations.executeObject(Class<T> returnType, MapSqlParameterSource args)
          Execute the stored procedure and return the single out parameter as an Object of the specified return type.
<T> T
SimpleJdbcCall.executeObject(Class<T> returnType, MapSqlParameterSource args)
           
 



Copyright © 2002-2008 The Spring Framework.