Uses of Class
org.apache.ibatis.mapping.BoundSql
Package | Description |
---|---|
org.apache.ibatis.builder |
Base package for the Configuration building code.
|
org.apache.ibatis.builder.annotation |
Parses annotions to create a Configuration.
|
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.mapping |
Base package for mapping.
|
org.apache.ibatis.scripting |
Base package for languages.
|
org.apache.ibatis.scripting.defaults |
Default beans for languages.
|
org.apache.ibatis.scripting.xmltags |
Default XML MyBatis language.
|
org.apache.ibatis.session |
Base package.
|
-
Uses of BoundSql in org.apache.ibatis.builder
Methods in org.apache.ibatis.builder that return BoundSql Modifier and Type Method Description BoundSql
StaticSqlSource. getBoundSql(Object parameterObject)
-
Uses of BoundSql in org.apache.ibatis.builder.annotation
Methods in org.apache.ibatis.builder.annotation that return BoundSql Modifier and Type Method Description BoundSql
ProviderSqlSource. getBoundSql(Object parameterObject)
-
Uses of BoundSql in org.apache.ibatis.executor
Methods in org.apache.ibatis.executor with parameters of type BoundSql Modifier and Type Method Description CacheKey
BaseExecutor. createCacheKey(MappedStatement ms, Object parameterObject, RowBounds rowBounds, BoundSql boundSql)
CacheKey
CachingExecutor. createCacheKey(MappedStatement ms, Object parameterObject, RowBounds rowBounds, BoundSql boundSql)
CacheKey
Executor. createCacheKey(MappedStatement ms, Object parameterObject, RowBounds rowBounds, BoundSql boundSql)
protected abstract <E> List<E>
BaseExecutor. doQuery(MappedStatement ms, Object parameter, RowBounds rowBounds, ResultHandler resultHandler, BoundSql boundSql)
<E> List<E>
BatchExecutor. doQuery(MappedStatement ms, Object parameterObject, RowBounds rowBounds, ResultHandler resultHandler, BoundSql boundSql)
<E> List<E>
ReuseExecutor. doQuery(MappedStatement ms, Object parameter, RowBounds rowBounds, ResultHandler resultHandler, BoundSql boundSql)
<E> List<E>
SimpleExecutor. doQuery(MappedStatement ms, Object parameter, RowBounds rowBounds, ResultHandler resultHandler, BoundSql boundSql)
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> List<E>
BaseExecutor. query(MappedStatement ms, Object parameter, RowBounds rowBounds, ResultHandler resultHandler, CacheKey key, BoundSql boundSql)
<E> List<E>
CachingExecutor. query(MappedStatement ms, Object parameterObject, RowBounds rowBounds, ResultHandler resultHandler, CacheKey key, BoundSql boundSql)
<E> List<E>
Executor. query(MappedStatement ms, Object parameter, RowBounds rowBounds, ResultHandler resultHandler, CacheKey cacheKey, BoundSql boundSql)
-
Uses of BoundSql in org.apache.ibatis.executor.loader
Fields in org.apache.ibatis.executor.loader declared as BoundSql Modifier and Type Field Description protected BoundSql
ResultLoader. boundSql
Constructors in org.apache.ibatis.executor.loader with parameters of type BoundSql Constructor Description ResultLoader(Configuration config, Executor executor, MappedStatement mappedStatement, Object parameterObject, Class<?> targetType, CacheKey cacheKey, BoundSql boundSql)
-
Uses of BoundSql in org.apache.ibatis.executor.resultset
Constructors in org.apache.ibatis.executor.resultset with parameters of type BoundSql Constructor Description DefaultResultSetHandler(Executor executor, MappedStatement mappedStatement, ParameterHandler parameterHandler, ResultHandler<?> resultHandler, BoundSql boundSql, RowBounds rowBounds)
-
Uses of BoundSql in org.apache.ibatis.executor.statement
Fields in org.apache.ibatis.executor.statement declared as BoundSql Modifier and Type Field Description protected BoundSql
BaseStatementHandler. boundSql
Methods in org.apache.ibatis.executor.statement that return BoundSql Modifier and Type Method Description BoundSql
BaseStatementHandler. getBoundSql()
BoundSql
RoutingStatementHandler. getBoundSql()
BoundSql
StatementHandler. getBoundSql()
Constructors in org.apache.ibatis.executor.statement with parameters of type BoundSql Constructor Description BaseStatementHandler(Executor executor, MappedStatement mappedStatement, Object parameterObject, RowBounds rowBounds, ResultHandler resultHandler, BoundSql boundSql)
CallableStatementHandler(Executor executor, MappedStatement mappedStatement, Object parameter, RowBounds rowBounds, ResultHandler resultHandler, BoundSql boundSql)
PreparedStatementHandler(Executor executor, MappedStatement mappedStatement, Object parameter, RowBounds rowBounds, ResultHandler resultHandler, BoundSql boundSql)
RoutingStatementHandler(Executor executor, MappedStatement ms, Object parameter, RowBounds rowBounds, ResultHandler resultHandler, BoundSql boundSql)
SimpleStatementHandler(Executor executor, MappedStatement mappedStatement, Object parameter, RowBounds rowBounds, ResultHandler resultHandler, BoundSql boundSql)
-
Uses of BoundSql in org.apache.ibatis.mapping
Methods in org.apache.ibatis.mapping that return BoundSql Modifier and Type Method Description BoundSql
MappedStatement. getBoundSql(Object parameterObject)
BoundSql
SqlSource. getBoundSql(Object parameterObject)
-
Uses of BoundSql in org.apache.ibatis.scripting
Methods in org.apache.ibatis.scripting with parameters of type BoundSql Modifier and Type Method Description ParameterHandler
LanguageDriver. createParameterHandler(MappedStatement mappedStatement, Object parameterObject, BoundSql boundSql)
Creates aParameterHandler
that passes the actual parameters to the the JDBC statement. -
Uses of BoundSql in org.apache.ibatis.scripting.defaults
Methods in org.apache.ibatis.scripting.defaults that return BoundSql Modifier and Type Method Description BoundSql
RawSqlSource. getBoundSql(Object parameterObject)
Constructors in org.apache.ibatis.scripting.defaults with parameters of type BoundSql Constructor Description DefaultParameterHandler(MappedStatement mappedStatement, Object parameterObject, BoundSql boundSql)
-
Uses of BoundSql in org.apache.ibatis.scripting.xmltags
Methods in org.apache.ibatis.scripting.xmltags that return BoundSql Modifier and Type Method Description BoundSql
DynamicSqlSource. getBoundSql(Object parameterObject)
Methods in org.apache.ibatis.scripting.xmltags with parameters of type BoundSql Modifier and Type Method Description ParameterHandler
XMLLanguageDriver. createParameterHandler(MappedStatement mappedStatement, Object parameterObject, BoundSql boundSql)
-
Uses of BoundSql in org.apache.ibatis.session
Methods in org.apache.ibatis.session with parameters of type BoundSql Modifier and Type Method Description ParameterHandler
Configuration. newParameterHandler(MappedStatement mappedStatement, Object parameterObject, BoundSql boundSql)
ResultSetHandler
Configuration. newResultSetHandler(Executor executor, MappedStatement mappedStatement, RowBounds rowBounds, ParameterHandler parameterHandler, ResultHandler resultHandler, BoundSql boundSql)
StatementHandler
Configuration. newStatementHandler(Executor executor, MappedStatement mappedStatement, Object parameterObject, RowBounds rowBounds, ResultHandler resultHandler, BoundSql boundSql)