Create no arg methods in the SqlMapDaoTemplate
----------------------------------------------
Key: IBATIS-271
URL: http://issues.apache.org/jira/browse/IBATIS-271
Project: iBatis for Java
Type: Improvement
Components: DAO
Reporter: Nathan Maves
Priority: Trivial
All of the query methods in SqlMapDaoTemplate should have the option not to
send a parameter to the query.
public Object queryForObject(String id);
public Object queryForObject(String id, Object resultObject);
public List queryForList(String id);
public void queryWithRowHandler(String id, RowHandler rowHandler);
public Map queryForMap(String id, String keyProp);
public Map queryForMap(String id, String keyProp, String valueProp);
Each of these methods will need to be created as passthrough methods to the
actual methods with null as the parameterObject.
Nathan
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
http://www.atlassian.com/software/jira