Uses of Interface
org.apache.ibatis.cursor.Cursor
Packages that use Cursor
Package
Description
Default implementation for cursor feature.
Contains the statement executors.
Contains the result processing logic.
Statement handlers.
Base package.
Default impl for SqlSession.
-
Uses of Cursor in org.apache.ibatis.cursor.defaults
Classes in org.apache.ibatis.cursor.defaults that implement CursorModifier and TypeClassDescriptionclass
This is the default implementation of a MyBatis Cursor. -
Uses of Cursor in org.apache.ibatis.executor
Methods in org.apache.ibatis.executor that return CursorModifier and TypeMethodDescriptionprotected abstract <E> Cursor
<E> BaseExecutor.doQueryCursor
(MappedStatement ms, Object parameter, RowBounds rowBounds, BoundSql boundSql) protected <E> Cursor
<E> BatchExecutor.doQueryCursor
(MappedStatement ms, Object parameter, RowBounds rowBounds, BoundSql boundSql) protected <E> Cursor
<E> ReuseExecutor.doQueryCursor
(MappedStatement ms, Object parameter, RowBounds rowBounds, BoundSql boundSql) protected <E> Cursor
<E> SimpleExecutor.doQueryCursor
(MappedStatement ms, Object parameter, RowBounds rowBounds, BoundSql boundSql) <E> Cursor
<E> BaseExecutor.queryCursor
(MappedStatement ms, Object parameter, RowBounds rowBounds) <E> Cursor
<E> CachingExecutor.queryCursor
(MappedStatement ms, Object parameter, RowBounds rowBounds) <E> Cursor
<E> Executor.queryCursor
(MappedStatement ms, Object parameter, RowBounds rowBounds) -
Uses of Cursor in org.apache.ibatis.executor.resultset
Methods in org.apache.ibatis.executor.resultset that return CursorModifier and TypeMethodDescription<E> Cursor
<E> DefaultResultSetHandler.handleCursorResultSets
(Statement stmt) <E> Cursor
<E> ResultSetHandler.handleCursorResultSets
(Statement stmt) -
Uses of Cursor in org.apache.ibatis.executor.statement
Methods in org.apache.ibatis.executor.statement that return CursorModifier and TypeMethodDescription<E> Cursor
<E> CallableStatementHandler.queryCursor
(Statement statement) <E> Cursor
<E> PreparedStatementHandler.queryCursor
(Statement statement) <E> Cursor
<E> RoutingStatementHandler.queryCursor
(Statement statement) <E> Cursor
<E> SimpleStatementHandler.queryCursor
(Statement statement) <E> Cursor
<E> StatementHandler.queryCursor
(Statement statement) -
Uses of Cursor in org.apache.ibatis.session
Methods in org.apache.ibatis.session that return CursorModifier and TypeMethodDescription<T> Cursor
<T> SqlSession.selectCursor
(String statement) A Cursor offers the same results as a List, except it fetches data lazily using an Iterator.<T> Cursor
<T> SqlSession.selectCursor
(String statement, Object parameter) A Cursor offers the same results as a List, except it fetches data lazily using an Iterator.<T> Cursor
<T> SqlSession.selectCursor
(String statement, Object parameter, RowBounds rowBounds) A Cursor offers the same results as a List, except it fetches data lazily using an Iterator.<T> Cursor
<T> SqlSessionManager.selectCursor
(String statement) <T> Cursor
<T> SqlSessionManager.selectCursor
(String statement, Object parameter) <T> Cursor
<T> SqlSessionManager.selectCursor
(String statement, Object parameter, RowBounds rowBounds) -
Uses of Cursor in org.apache.ibatis.session.defaults
Methods in org.apache.ibatis.session.defaults that return CursorModifier and TypeMethodDescription<T> Cursor
<T> DefaultSqlSession.selectCursor
(String statement) <T> Cursor
<T> DefaultSqlSession.selectCursor
(String statement, Object parameter) <T> Cursor
<T> DefaultSqlSession.selectCursor
(String statement, Object parameter, RowBounds rowBounds)