Uses of Interface
org.apache.ibatis.cursor.Cursor
-
Packages that use Cursor Package Description org.apache.ibatis.binding Bings mapper interfaces with mapped statements.org.apache.ibatis.cursor.defaults Default implementation for cursor feature.org.apache.ibatis.executor Contains the statement executors.org.apache.ibatis.executor.loader Base package for loading results into beans.org.apache.ibatis.executor.resultset Contains the result processing logic.org.apache.ibatis.executor.statement Statement handlers.org.apache.ibatis.session Base package.org.apache.ibatis.session.defaults Default impl for SqlSession. -
-
Uses of Cursor in org.apache.ibatis.binding
Methods in org.apache.ibatis.binding that return Cursor Modifier and Type Method Description private <T> Cursor<T>
MapperMethod. executeForCursor(SqlSession sqlSession, java.lang.Object[] args)
-
Uses of Cursor in org.apache.ibatis.cursor.defaults
Classes in org.apache.ibatis.cursor.defaults that implement Cursor Modifier and Type Class Description class
DefaultCursor<T>
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 Cursor Modifier and Type Method Description protected abstract <E> Cursor<E>
BaseExecutor. doQueryCursor(MappedStatement ms, java.lang.Object parameter, RowBounds rowBounds, BoundSql boundSql)
protected <E> Cursor<E>
BatchExecutor. doQueryCursor(MappedStatement ms, java.lang.Object parameter, RowBounds rowBounds, BoundSql boundSql)
protected <E> Cursor<E>
ReuseExecutor. doQueryCursor(MappedStatement ms, java.lang.Object parameter, RowBounds rowBounds, BoundSql boundSql)
protected <E> Cursor<E>
SimpleExecutor. doQueryCursor(MappedStatement ms, java.lang.Object parameter, RowBounds rowBounds, BoundSql boundSql)
<E> Cursor<E>
BaseExecutor. queryCursor(MappedStatement ms, java.lang.Object parameter, RowBounds rowBounds)
<E> Cursor<E>
CachingExecutor. queryCursor(MappedStatement ms, java.lang.Object parameter, RowBounds rowBounds)
<E> Cursor<E>
Executor. queryCursor(MappedStatement ms, java.lang.Object parameter, RowBounds rowBounds)
-
Uses of Cursor in org.apache.ibatis.executor.loader
Methods in org.apache.ibatis.executor.loader that return Cursor Modifier and Type Method Description protected <E> Cursor<E>
ResultLoaderMap.ClosedExecutor. doQueryCursor(MappedStatement ms, java.lang.Object parameter, RowBounds rowBounds, BoundSql boundSql)
-
Uses of Cursor in org.apache.ibatis.executor.resultset
Methods in org.apache.ibatis.executor.resultset that return Cursor Modifier and Type Method Description <E> Cursor<E>
DefaultResultSetHandler. handleCursorResultSets(java.sql.Statement stmt)
<E> Cursor<E>
ResultSetHandler. handleCursorResultSets(java.sql.Statement stmt)
-
Uses of Cursor in org.apache.ibatis.executor.statement
Methods in org.apache.ibatis.executor.statement that return Cursor Modifier and Type Method Description <E> Cursor<E>
CallableStatementHandler. queryCursor(java.sql.Statement statement)
<E> Cursor<E>
PreparedStatementHandler. queryCursor(java.sql.Statement statement)
<E> Cursor<E>
RoutingStatementHandler. queryCursor(java.sql.Statement statement)
<E> Cursor<E>
SimpleStatementHandler. queryCursor(java.sql.Statement statement)
<E> Cursor<E>
StatementHandler. queryCursor(java.sql.Statement statement)
-
Uses of Cursor in org.apache.ibatis.session
Methods in org.apache.ibatis.session that return Cursor Modifier and Type Method Description <T> Cursor<T>
SqlSession. selectCursor(java.lang.String statement)
A Cursor offers the same results as a List, except it fetches data lazily using an Iterator.<T> Cursor<T>
SqlSession. selectCursor(java.lang.String statement, java.lang.Object parameter)
A Cursor offers the same results as a List, except it fetches data lazily using an Iterator.<T> Cursor<T>
SqlSession. selectCursor(java.lang.String statement, java.lang.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(java.lang.String statement)
<T> Cursor<T>
SqlSessionManager. selectCursor(java.lang.String statement, java.lang.Object parameter)
<T> Cursor<T>
SqlSessionManager. selectCursor(java.lang.String statement, java.lang.Object parameter, RowBounds rowBounds)
-
Uses of Cursor in org.apache.ibatis.session.defaults
Fields in org.apache.ibatis.session.defaults with type parameters of type Cursor Modifier and Type Field Description private java.util.List<Cursor<?>>
DefaultSqlSession. cursorList
Methods in org.apache.ibatis.session.defaults that return Cursor Modifier and Type Method Description <T> Cursor<T>
DefaultSqlSession. selectCursor(java.lang.String statement)
<T> Cursor<T>
DefaultSqlSession. selectCursor(java.lang.String statement, java.lang.Object parameter)
<T> Cursor<T>
DefaultSqlSession. selectCursor(java.lang.String statement, java.lang.Object parameter, RowBounds rowBounds)
Methods in org.apache.ibatis.session.defaults with parameters of type Cursor Modifier and Type Method Description private <T> void
DefaultSqlSession. registerCursor(Cursor<T> cursor)
-