|
The Spring Framework | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface SqlMapClientOperations
Interface that specifies a basic set of iBATIS SqlMapClient operations,
implemented by SqlMapClientTemplate
. Not often used, but a useful
option to enhance testability, as it can easily be mocked or stubbed.
Defines SqlMapClientTemplate's convenience methods that mirror
the iBATIS SqlMapExecutor
's execution
methods. Users are strongly encouraged to read the iBATIS javadocs
for details on the semantics of those methods.
SqlMapClientTemplate
,
SqlMapClient
,
SqlMapExecutor
Method Summary | |
---|---|
int |
delete(String statementName)
|
int |
delete(String statementName,
Object parameterObject)
|
void |
delete(String statementName,
Object parameterObject,
int requiredRowsAffected)
Convenience method provided by Spring: execute a delete operation with an automatic check that the delete affected the given required number of rows. |
Object |
insert(String statementName)
|
Object |
insert(String statementName,
Object parameterObject)
|
List |
queryForList(String statementName)
|
List |
queryForList(String statementName,
int skipResults,
int maxResults)
|
List |
queryForList(String statementName,
Object parameterObject)
|
List |
queryForList(String statementName,
Object parameterObject,
int skipResults,
int maxResults)
|
Map |
queryForMap(String statementName,
Object parameterObject,
String keyProperty)
|
Map |
queryForMap(String statementName,
Object parameterObject,
String keyProperty,
String valueProperty)
|
Object |
queryForObject(String statementName)
|
Object |
queryForObject(String statementName,
Object parameterObject)
|
Object |
queryForObject(String statementName,
Object parameterObject,
Object resultObject)
|
com.ibatis.common.util.PaginatedList |
queryForPaginatedList(String statementName,
int pageSize)
Deprecated. as of iBATIS 2.3.0 |
com.ibatis.common.util.PaginatedList |
queryForPaginatedList(String statementName,
Object parameterObject,
int pageSize)
Deprecated. as of iBATIS 2.3.0 |
void |
queryWithRowHandler(String statementName,
Object parameterObject,
com.ibatis.sqlmap.client.event.RowHandler rowHandler)
|
void |
queryWithRowHandler(String statementName,
com.ibatis.sqlmap.client.event.RowHandler rowHandler)
|
int |
update(String statementName)
|
int |
update(String statementName,
Object parameterObject)
|
void |
update(String statementName,
Object parameterObject,
int requiredRowsAffected)
Convenience method provided by Spring: execute an update operation with an automatic check that the update affected the given required number of rows. |
Method Detail |
---|
Object queryForObject(String statementName) throws DataAccessException
DataAccessException
- in case of errorsSqlMapExecutor.queryForObject(String)
Object queryForObject(String statementName, Object parameterObject) throws DataAccessException
DataAccessException
- in case of errorsSqlMapExecutor.queryForObject(String, Object)
Object queryForObject(String statementName, Object parameterObject, Object resultObject) throws DataAccessException
DataAccessException
- in case of errorsSqlMapExecutor.queryForObject(String, Object, Object)
List queryForList(String statementName) throws DataAccessException
DataAccessException
- in case of errorsSqlMapExecutor.queryForList(String)
List queryForList(String statementName, Object parameterObject) throws DataAccessException
DataAccessException
- in case of errorsSqlMapExecutor.queryForList(String, Object)
List queryForList(String statementName, int skipResults, int maxResults) throws DataAccessException
DataAccessException
- in case of errorsSqlMapExecutor.queryForList(String, int, int)
List queryForList(String statementName, Object parameterObject, int skipResults, int maxResults) throws DataAccessException
DataAccessException
- in case of errorsSqlMapExecutor.queryForList(String, Object, int, int)
void queryWithRowHandler(String statementName, com.ibatis.sqlmap.client.event.RowHandler rowHandler) throws DataAccessException
DataAccessException
- in case of errorsSqlMapExecutor.queryWithRowHandler(String, RowHandler)
void queryWithRowHandler(String statementName, Object parameterObject, com.ibatis.sqlmap.client.event.RowHandler rowHandler) throws DataAccessException
DataAccessException
- in case of errorsSqlMapExecutor.queryWithRowHandler(String, Object, RowHandler)
com.ibatis.common.util.PaginatedList queryForPaginatedList(String statementName, int pageSize) throws DataAccessException
DataAccessException
- in case of errorsSqlMapExecutor.queryForPaginatedList(String, int)
com.ibatis.common.util.PaginatedList queryForPaginatedList(String statementName, Object parameterObject, int pageSize) throws DataAccessException
DataAccessException
- in case of errorsSqlMapExecutor.queryForPaginatedList(String, Object, int)
Map queryForMap(String statementName, Object parameterObject, String keyProperty) throws DataAccessException
DataAccessException
- in case of errorsSqlMapExecutor.queryForMap(String, Object, String)
Map queryForMap(String statementName, Object parameterObject, String keyProperty, String valueProperty) throws DataAccessException
DataAccessException
- in case of errorsSqlMapExecutor.queryForMap(String, Object, String, String)
Object insert(String statementName) throws DataAccessException
DataAccessException
- in case of errorsSqlMapExecutor.insert(String)
Object insert(String statementName, Object parameterObject) throws DataAccessException
DataAccessException
- in case of errorsSqlMapExecutor.insert(String, Object)
int update(String statementName) throws DataAccessException
DataAccessException
- in case of errorsSqlMapExecutor.update(String)
int update(String statementName, Object parameterObject) throws DataAccessException
DataAccessException
- in case of errorsSqlMapExecutor.update(String, Object)
void update(String statementName, Object parameterObject, int requiredRowsAffected) throws DataAccessException
statementName
- the name of the mapped statementparameterObject
- the parameter objectrequiredRowsAffected
- the number of rows that the update is
required to affect
DataAccessException
- in case of errorsint delete(String statementName) throws DataAccessException
DataAccessException
- in case of errorsSqlMapExecutor.delete(String)
int delete(String statementName, Object parameterObject) throws DataAccessException
DataAccessException
- in case of errorsSqlMapExecutor.delete(String, Object)
void delete(String statementName, Object parameterObject, int requiredRowsAffected) throws DataAccessException
statementName
- the name of the mapped statementparameterObject
- the parameter objectrequiredRowsAffected
- the number of rows that the delete is
required to affect
DataAccessException
- in case of errors
|
The Spring Framework | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |