com.ibatis.sqlmap.engine.impl
public interface ExtendedSqlMapClient extends SqlMapClient
Deprecated: - this class is uneccessary and should be removed as soon as possible. Currently spring integration depends on it.
| Method Summary | |
|---|---|
| void | commitTransaction() |
| int | delete(String id, Object param) |
| int | delete(String id) |
| void | endTransaction() |
| int | executeBatch() |
| List | executeBatchDetailed() |
| void | flushDataCache() |
| void | flushDataCache(String cacheId) |
| Connection | getCurrentConnection() |
| DataSource | getDataSource() |
| SqlMapExecutorDelegate | getDelegate() |
| MappedStatement | getMappedStatement(String id) |
| ResultObjectFactory | getResultObjectFactory() |
| SqlMapSession | getSession() |
| SqlExecutor | getSqlExecutor() |
| Connection | getUserConnection() |
| Object | insert(String id, Object param) |
| Object | insert(String id) |
| boolean | isEnhancementEnabled() |
| boolean | isLazyLoadingEnabled() |
| SqlMapSession | openSession() |
| SqlMapSession | openSession(Connection conn) |
| List | queryForList(String id, Object paramObject) |
| List | queryForList(String id) |
| List | queryForList(String id, Object paramObject, int skip, int max) |
| List | queryForList(String id, int skip, int max) |
| Map | queryForMap(String id, Object paramObject, String keyProp) |
| Map | queryForMap(String id, Object paramObject, String keyProp, String valueProp) |
| Object | queryForObject(String id, Object paramObject) |
| Object | queryForObject(String id) |
| Object | queryForObject(String id, Object paramObject, Object resultObject) |
| PaginatedList | queryForPaginatedList(String id, Object paramObject, int pageSize) |
| PaginatedList | queryForPaginatedList(String id, int pageSize) |
| void | queryWithRowHandler(String id, Object paramObject, RowHandler rowHandler) |
| void | queryWithRowHandler(String id, RowHandler rowHandler) |
| void | setUserConnection(Connection connection) |
| void | startBatch() |
| void | startTransaction() |
| void | startTransaction(int transactionIsolation) |
| int | update(String id, Object param) |
| int | update(String id) |