Uses of Interface
org.apache.ibatis.cursor.Cursor
-
Packages that use Cursor Package Description org.apache.ibatis.cursor.defaults Default implementation for cursor feature.org.apache.ibatis.executor Contains the statement executors.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.cursor.defaults
Classes in org.apache.ibatis.cursor.defaults that implement Cursor Modifier and Type Class Description classDefaultCursor<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, 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 Cursor Modifier and Type Method Description <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 Cursor Modifier and Type Method Description <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 Cursor Modifier and Type Method Description <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 Cursor Modifier and Type Method Description <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)
-