Class ResultLoaderMap.ClosedExecutor
- java.lang.Object
-
- org.apache.ibatis.executor.BaseExecutor
-
- org.apache.ibatis.executor.loader.ResultLoaderMap.ClosedExecutor
-
- All Implemented Interfaces:
Executor
- Enclosing class:
- ResultLoaderMap
private static final class ResultLoaderMap.ClosedExecutor extends BaseExecutor
-
-
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
Constructors Constructor Description ClosedExecutor()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected java.util.List<BatchResult>
doFlushStatements(boolean isRollback)
protected <E> java.util.List<E>
doQuery(MappedStatement ms, java.lang.Object parameter, RowBounds rowBounds, ResultHandler resultHandler, BoundSql boundSql)
protected <E> Cursor<E>
doQueryCursor(MappedStatement ms, java.lang.Object parameter, RowBounds rowBounds, BoundSql boundSql)
protected int
doUpdate(MappedStatement ms, java.lang.Object parameter)
boolean
isClosed()
-
Methods inherited from class org.apache.ibatis.executor.BaseExecutor
applyTransactionTimeout, clearLocalCache, close, closeStatement, commit, createCacheKey, deferLoad, flushStatements, flushStatements, getConnection, getTransaction, isCached, query, query, queryCursor, rollback, setExecutorWrapper, update
-
-
-
-
Method Detail
-
isClosed
public boolean isClosed()
- Specified by:
isClosed
in interfaceExecutor
- Overrides:
isClosed
in classBaseExecutor
-
doUpdate
protected int doUpdate(MappedStatement ms, java.lang.Object parameter) throws java.sql.SQLException
- Specified by:
doUpdate
in classBaseExecutor
- Throws:
java.sql.SQLException
-
doFlushStatements
protected java.util.List<BatchResult> doFlushStatements(boolean isRollback) throws java.sql.SQLException
- Specified by:
doFlushStatements
in classBaseExecutor
- Throws:
java.sql.SQLException
-
doQuery
protected <E> java.util.List<E> doQuery(MappedStatement ms, java.lang.Object parameter, RowBounds rowBounds, ResultHandler resultHandler, BoundSql boundSql) throws java.sql.SQLException
- Specified by:
doQuery
in classBaseExecutor
- Throws:
java.sql.SQLException
-
doQueryCursor
protected <E> Cursor<E> doQueryCursor(MappedStatement ms, java.lang.Object parameter, RowBounds rowBounds, BoundSql boundSql) throws java.sql.SQLException
- Specified by:
doQueryCursor
in classBaseExecutor
- Throws:
java.sql.SQLException
-
-