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.
|
Modifier and Type | Class and Description |
---|---|
class |
DefaultCursor<T>
This is the default implementation of a MyBatis Cursor.
|
Modifier and Type | Method and Description |
---|---|
protected <E> Cursor<E> |
SimpleExecutor.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> |
BatchExecutor.doQueryCursor(MappedStatement ms,
Object parameter,
RowBounds rowBounds,
BoundSql boundSql) |
protected abstract <E> Cursor<E> |
BaseExecutor.doQueryCursor(MappedStatement ms,
Object parameter,
RowBounds rowBounds,
BoundSql boundSql) |
<E> Cursor<E> |
Executor.queryCursor(MappedStatement ms,
Object parameter,
RowBounds rowBounds) |
<E> Cursor<E> |
CachingExecutor.queryCursor(MappedStatement ms,
Object parameter,
RowBounds rowBounds) |
<E> Cursor<E> |
BaseExecutor.queryCursor(MappedStatement ms,
Object parameter,
RowBounds rowBounds) |
Modifier and Type | Method and Description |
---|---|
<E> Cursor<E> |
ResultSetHandler.handleCursorResultSets(Statement stmt) |
<E> Cursor<E> |
DefaultResultSetHandler.handleCursorResultSets(Statement stmt) |
Modifier and Type | Method and Description |
---|---|
<E> Cursor<E> |
StatementHandler.queryCursor(Statement statement) |
<E> Cursor<E> |
SimpleStatementHandler.queryCursor(Statement statement) |
<E> Cursor<E> |
RoutingStatementHandler.queryCursor(Statement statement) |
<E> Cursor<E> |
CallableStatementHandler.queryCursor(Statement statement) |
<E> Cursor<E> |
PreparedStatementHandler.queryCursor(Statement statement) |
Modifier and Type | Method and Description |
---|---|
<T> Cursor<T> |
SqlSessionManager.selectCursor(String statement) |
<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> |
SqlSessionManager.selectCursor(String statement,
Object parameter) |
<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> |
SqlSessionManager.selectCursor(String statement,
Object parameter,
RowBounds rowBounds) |
<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.
|
Modifier and Type | Method and 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) |
Copyright © 2009–2021 MyBatis.org. All rights reserved.