Package org.apache.ibatis.executor
Class ReuseExecutor
java.lang.Object
org.apache.ibatis.executor.BaseExecutor
org.apache.ibatis.executor.ReuseExecutor
- All Implemented Interfaces:
Executor
- Author:
- Clinton Begin
-
Field Summary
Fields inherited from class org.apache.ibatis.executor.BaseExecutor
configuration, deferredLoads, localCache, localOutputParameterCache, queryStack, transaction, wrapper
Fields inherited from interface org.apache.ibatis.executor.Executor
NO_RESULT_HANDLER
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptiondoFlushStatements
(boolean isRollback) <E> List<E>
doQuery
(MappedStatement ms, Object parameter, RowBounds rowBounds, ResultHandler resultHandler, BoundSql boundSql) protected <E> Cursor<E>
doQueryCursor
(MappedStatement ms, Object parameter, RowBounds rowBounds, BoundSql boundSql) int
doUpdate
(MappedStatement ms, Object parameter) Methods inherited from class org.apache.ibatis.executor.BaseExecutor
applyTransactionTimeout, clearLocalCache, close, closeStatement, commit, createCacheKey, deferLoad, flushStatements, flushStatements, getConnection, getTransaction, isCached, isClosed, query, query, queryCursor, rollback, setExecutorWrapper, update
-
Constructor Details
-
ReuseExecutor
-
-
Method Details
-
doUpdate
- Specified by:
doUpdate
in classBaseExecutor
- Throws:
SQLException
-
doQuery
public <E> List<E> doQuery(MappedStatement ms, Object parameter, RowBounds rowBounds, ResultHandler resultHandler, BoundSql boundSql) throws SQLException - Specified by:
doQuery
in classBaseExecutor
- Throws:
SQLException
-
doQueryCursor
protected <E> Cursor<E> doQueryCursor(MappedStatement ms, Object parameter, RowBounds rowBounds, BoundSql boundSql) throws SQLException - Specified by:
doQueryCursor
in classBaseExecutor
- Throws:
SQLException
-
doFlushStatements
- Specified by:
doFlushStatements
in classBaseExecutor
-