Generated by
JDiff

Class org.springframework.jdbc.object.SqlQuery

Removed Methods
List<T> execute(int, int, Map) Convenient method to execute with two int parameters and context.
List<T> execute(int, Map) Convenient method to execute with a single int parameter and context.
List<T> execute(Object[], Map) Central execution method.
List<T> execute(String, Map) Convenient method to execute with a single String parameter and context.
List<T> execute(Map) Convenient method to execute without parameters.
List<T> execute(long, Map) Convenient method to execute with a single long parameter and context.
T findObject(int, int, Map) Convenient method to find a single object given two int parameters and a context.
T findObject(int, Map) Convenient method to find a single object given a single int parameter and a context.
T findObject(Object[], Map) Generic object finder method, used by all other {@code findObject} methods.
T findObject(String, Map) Convenient method to find a single object given a single String parameter and a context.
T findObject(long, Map) Convenient method to find a single object given a single long parameter and a context.
 

Added Methods
List<T> execute(int, int, Map<?, ?>) Convenient method to execute with two int parameters and context.
List<T> execute(int, Map<?, ?>) Convenient method to execute with a single int parameter and context.
List<T> execute(Object[], Map<?, ?>) Central execution method.
List<T> execute(String, Map<?, ?>) Convenient method to execute with a single String parameter and context.
List<T> execute(Map<?, ?>) Convenient method to execute without parameters.
List<T> execute(long, Map<?, ?>) Convenient method to execute with a single long parameter and context.
T findObject(int, int, Map<?, ?>) Convenient method to find a single object given two int parameters and a context.
T findObject(int, Map<?, ?>) Convenient method to find a single object given a single int parameter and a context.
T findObject(Object[], Map<?, ?>) Generic object finder method, used by all other {@code findObject} methods.
T findObject(String, Map<?, ?>) Convenient method to find a single object given a single String parameter and a context.
T findObject(long, Map<?, ?>) Convenient method to find a single object given a single long parameter and a context.
 

Changed Methods
RowMapper<T> newRowMapper(Object[], Map<?, ?>) Change in signature from (Object[], Map) to (Object[], Map<?, ?>).
Subclasses must implement this method to extract an object per row, to be returned by the execute method as an aggregated List.
List<T> executeByNamedParam(Map<String, ?>, Map<?, ?>) Change in signature from (Map<String, ?>, Map) to (Map<String, ?>, Map<?, ?>).
Central execution method.
T findObjectByNamedParam(Map<String, ?>, Map<?, ?>) Change in signature from (Map<String, ?>, Map) to (Map<String, ?>, Map<?, ?>).
Generic object finder method for named parameters.