Uses of Class
org.apache.ibatis.mapping.BoundSql
-
Packages that use BoundSql Package Description org.apache.ibatis.builder Base package for the Configuration building codeorg.apache.ibatis.builder.annotation Parses annotions to create a Configurationorg.apache.ibatis.executor Contains the statement executors.org.apache.ibatis.executor.loader Base package for loading results into beansorg.apache.ibatis.executor.resultset Contains the result processing logicorg.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(java.lang.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(java.lang.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, java.lang.Object parameterObject, RowBounds rowBounds, BoundSql boundSql)
CacheKey
CachingExecutor. createCacheKey(MappedStatement ms, java.lang.Object parameterObject, RowBounds rowBounds, BoundSql boundSql)
CacheKey
Executor. createCacheKey(MappedStatement ms, java.lang.Object parameterObject, RowBounds rowBounds, BoundSql boundSql)
protected abstract <E> java.util.List<E>
BaseExecutor. doQuery(MappedStatement ms, java.lang.Object parameter, RowBounds rowBounds, ResultHandler resultHandler, BoundSql boundSql)
<E> java.util.List<E>
BatchExecutor. doQuery(MappedStatement ms, java.lang.Object parameterObject, RowBounds rowBounds, ResultHandler resultHandler, BoundSql boundSql)
<E> java.util.List<E>
ReuseExecutor. doQuery(MappedStatement ms, java.lang.Object parameter, RowBounds rowBounds, ResultHandler resultHandler, BoundSql boundSql)
<E> java.util.List<E>
SimpleExecutor. doQuery(MappedStatement ms, java.lang.Object parameter, RowBounds rowBounds, ResultHandler resultHandler, BoundSql boundSql)
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> java.util.List<E>
BaseExecutor. query(MappedStatement ms, java.lang.Object parameter, RowBounds rowBounds, ResultHandler resultHandler, CacheKey key, BoundSql boundSql)
<E> java.util.List<E>
CachingExecutor. query(MappedStatement ms, java.lang.Object parameterObject, RowBounds rowBounds, ResultHandler resultHandler, CacheKey key, BoundSql boundSql)
<E> java.util.List<E>
Executor. query(MappedStatement ms, java.lang.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, java.lang.Object parameterObject, java.lang.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, java.lang.Object parameterObject, RowBounds rowBounds, ResultHandler resultHandler, BoundSql boundSql)
CallableStatementHandler(Executor executor, MappedStatement mappedStatement, java.lang.Object parameter, RowBounds rowBounds, ResultHandler resultHandler, BoundSql boundSql)
PreparedStatementHandler(Executor executor, MappedStatement mappedStatement, java.lang.Object parameter, RowBounds rowBounds, ResultHandler resultHandler, BoundSql boundSql)
RoutingStatementHandler(Executor executor, MappedStatement ms, java.lang.Object parameter, RowBounds rowBounds, ResultHandler resultHandler, BoundSql boundSql)
SimpleStatementHandler(Executor executor, MappedStatement mappedStatement, java.lang.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(java.lang.Object parameterObject)
BoundSql
SqlSource. getBoundSql(java.lang.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, java.lang.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(java.lang.Object parameterObject)
Constructors in org.apache.ibatis.scripting.defaults with parameters of type BoundSql Constructor Description DefaultParameterHandler(MappedStatement mappedStatement, java.lang.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(java.lang.Object parameterObject)
Methods in org.apache.ibatis.scripting.xmltags with parameters of type BoundSql Modifier and Type Method Description ParameterHandler
XMLLanguageDriver. createParameterHandler(MappedStatement mappedStatement, java.lang.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, java.lang.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, java.lang.Object parameterObject, RowBounds rowBounds, ResultHandler resultHandler, BoundSql boundSql)
-