Uses of Class
com.ibatis.sqlmap.engine.scope.StatementScope
Packages that use StatementScope
Package
Description
-
Uses of StatementScope in com.ibatis.sqlmap.engine.exchange
Methods in com.ibatis.sqlmap.engine.exchange with parameters of type StatementScopeModifier and TypeMethodDescriptionBaseDataExchange.getCacheKey(StatementScope statementScope, ParameterMap parameterMap, Object parameterObject) DataExchange.getCacheKey(StatementScope statementScope, ParameterMap parameterMap, Object parameterObject) Returns an object capable of being a unique cache key for a parameter object.Object[]ComplexDataExchange.getData(StatementScope statementScope, ParameterMap parameterMap, Object parameterObject) Object[]DataExchange.getData(StatementScope statementScope, ParameterMap parameterMap, Object parameterObject) Gets a data array from a parameter object.Object[]DomDataExchange.getData(StatementScope statementScope, ParameterMap parameterMap, Object parameterObject) Object[]JavaBeanDataExchange.getData(StatementScope statementScope, ParameterMap parameterMap, Object parameterObject) Object[]ListDataExchange.getData(StatementScope statementScope, ParameterMap parameterMap, Object parameterObject) Object[]MapDataExchange.getData(StatementScope statementScope, ParameterMap parameterMap, Object parameterObject) Object[]PrimitiveDataExchange.getData(StatementScope statementScope, ParameterMap parameterMap, Object parameterObject) ComplexDataExchange.setData(StatementScope statementScope, ParameterMap parameterMap, Object parameterObject, Object[] values) ComplexDataExchange.setData(StatementScope statementScope, ResultMap resultMap, Object resultObject, Object[] values) DataExchange.setData(StatementScope statementScope, ParameterMap parameterMap, Object parameterObject, Object[] values) Sets values from a data array into a parameter object.DataExchange.setData(StatementScope statementScope, ResultMap resultMap, Object resultObject, Object[] values) Sets values from a data array into a result object.DomDataExchange.setData(StatementScope statementScope, ParameterMap parameterMap, Object parameterObject, Object[] values) DomDataExchange.setData(StatementScope statementScope, ResultMap resultMap, Object resultObject, Object[] values) JavaBeanDataExchange.setData(StatementScope statementScope, ParameterMap parameterMap, Object parameterObject, Object[] values) JavaBeanDataExchange.setData(StatementScope statementScope, ResultMap resultMap, Object resultObject, Object[] values) ListDataExchange.setData(StatementScope statementScope, ParameterMap parameterMap, Object parameterObject, Object[] values) ListDataExchange.setData(StatementScope statementScope, ResultMap resultMap, Object resultObject, Object[] values) MapDataExchange.setData(StatementScope statementScope, ParameterMap parameterMap, Object parameterObject, Object[] values) MapDataExchange.setData(StatementScope statementScope, ResultMap resultMap, Object resultObject, Object[] values) PrimitiveDataExchange.setData(StatementScope statementScope, ParameterMap parameterMap, Object parameterObject, Object[] values) PrimitiveDataExchange.setData(StatementScope statementScope, ResultMap resultMap, Object resultObject, Object[] values) -
Uses of StatementScope in com.ibatis.sqlmap.engine.execution
Methods in com.ibatis.sqlmap.engine.execution with parameters of type StatementScopeModifier and TypeMethodDescriptionvoidDefaultSqlExecutor.addBatch(StatementScope statementScope, Connection conn, String sql, Object[] parameters) Adds a statement to a batchvoidSqlExecutor.addBatch(StatementScope statementScope, Connection conn, String sql, Object[] parameters) Adds a statement to a batch.voidDefaultSqlExecutor.executeQuery(StatementScope statementScope, Connection conn, String sql, Object[] parameters, int skipResults, int maxResults, RowHandlerCallback callback) Long form of the method to execute a queryvoidSqlExecutor.executeQuery(StatementScope statementScope, Connection conn, String sql, Object[] parameters, int skipResults, int maxResults, RowHandlerCallback callback) Long form of the method to execute a query.voidDefaultSqlExecutor.executeQueryProcedure(StatementScope statementScope, Connection conn, String sql, Object[] parameters, int skipResults, int maxResults, RowHandlerCallback callback) Execute a stored procedurevoidSqlExecutor.executeQueryProcedure(StatementScope statementScope, Connection conn, String sql, Object[] parameters, int skipResults, int maxResults, RowHandlerCallback callback) Execute a stored procedure.intDefaultSqlExecutor.executeUpdate(StatementScope statementScope, Connection conn, String sql, Object[] parameters) Execute an updateintSqlExecutor.executeUpdate(StatementScope statementScope, Connection conn, String sql, Object[] parameters) Execute an update.intDefaultSqlExecutor.executeUpdateProcedure(StatementScope statementScope, Connection conn, String sql, Object[] parameters) Execute a stored procedure that updates dataintSqlExecutor.executeUpdateProcedure(StatementScope statementScope, Connection conn, String sql, Object[] parameters) Execute a stored procedure that updates data. -
Uses of StatementScope in com.ibatis.sqlmap.engine.impl
Methods in com.ibatis.sqlmap.engine.impl that return StatementScopeModifier and TypeMethodDescriptionprotected StatementScopeSqlMapExecutorDelegate.beginStatementScope(SessionScope sessionScope, MappedStatement mappedStatement) Begin statement scope.Methods in com.ibatis.sqlmap.engine.impl with parameters of type StatementScopeModifier and TypeMethodDescriptionprotected voidSqlMapExecutorDelegate.endStatementScope(StatementScope statementScope) End statement scope. -
Uses of StatementScope in com.ibatis.sqlmap.engine.mapping.parameter
Methods in com.ibatis.sqlmap.engine.mapping.parameter with parameters of type StatementScopeModifier and TypeMethodDescriptionParameterMap.getCacheKey(StatementScope statementScope, Object parameterObject) Gets the cache key.Object[]NoParameterMap.getParameterObjectValues(StatementScope statementScope, Object parameterObject) Object[]ParameterMap.getParameterObjectValues(StatementScope statementScope, Object parameterObject) Gets the parameter object values.voidParameterMap.refreshParameterObjectValues(StatementScope statementScope, Object parameterObject, Object[] values) Refresh parameter object values.voidParameterMap.setParameters(StatementScope statementScope, PreparedStatement ps, Object[] parameters) Sets the parameters. -
Uses of StatementScope in com.ibatis.sqlmap.engine.mapping.result
Methods in com.ibatis.sqlmap.engine.mapping.result with parameters of type StatementScopeModifier and TypeMethodDescriptionprotected ObjectResultMap.getNestedSelectMappingValue(StatementScope statementScope, ResultSet rs, ResultMapping mapping, Class targetType) Gets the nested select mapping value.Object[]AutoResultMap.getResults(StatementScope statementScope, ResultSet rs) Object[]ResultMap.getResults(StatementScope statementScope, ResultSet rs) Read a row from a resultset and map results to an array.ResultMap.resolveSubMap(StatementScope statementScope, ResultSet rs) Resolve sub map.protected voidResultMap.setNestedResultMappingValue(ResultMapping mapping, StatementScope statementScope, Object resultObject, Object[] values) Some changes in this method for IBATIS-225: We no longer require the nested property to be a collection.AutoResultMap.setResultObjectValues(StatementScope statementScope, Object resultObject, Object[] values) ResultMap.setResultObjectValues(StatementScope statementScope, Object resultObject, Object[] values) Sets the result object values. -
Uses of StatementScope in com.ibatis.sqlmap.engine.mapping.sql
Methods in com.ibatis.sqlmap.engine.mapping.sql with parameters of type StatementScopeModifier and TypeMethodDescriptionvoidSql.cleanup(StatementScope statementScope) Cleanup.Sql.getParameterMap(StatementScope statementScope, Object parameterObject) Gets the parameter map.Sql.getResultMap(StatementScope statementScope, Object parameterObject) Gets the result map.Sql.getSql(StatementScope statementScope, Object parameterObject) Gets the sql. -
Uses of StatementScope in com.ibatis.sqlmap.engine.mapping.sql.dynamic
Methods in com.ibatis.sqlmap.engine.mapping.sql.dynamic with parameters of type StatementScopeModifier and TypeMethodDescriptionvoidDynamicSql.cleanup(StatementScope statementScope) DynamicSql.getParameterMap(StatementScope statementScope, Object parameterObject) DynamicSql.getResultMap(StatementScope statementScope, Object parameterObject) DynamicSql.getSql(StatementScope statementScope, Object parameterObject) -
Uses of StatementScope in com.ibatis.sqlmap.engine.mapping.sql.raw
Methods in com.ibatis.sqlmap.engine.mapping.sql.raw with parameters of type StatementScopeModifier and TypeMethodDescriptionvoidRawSql.cleanup(StatementScope statementScope) RawSql.getParameterMap(StatementScope statementScope, Object parameterObject) RawSql.getResultMap(StatementScope statementScope, Object parameterObject) RawSql.getSql(StatementScope statementScope, Object parameterObject) -
Uses of StatementScope in com.ibatis.sqlmap.engine.mapping.sql.simple
Methods in com.ibatis.sqlmap.engine.mapping.sql.simple with parameters of type StatementScopeModifier and TypeMethodDescriptionvoidSimpleDynamicSql.cleanup(StatementScope statementScope) SimpleDynamicSql.getParameterMap(StatementScope statementScope, Object parameterObject) SimpleDynamicSql.getResultMap(StatementScope statementScope, Object parameterObject) SimpleDynamicSql.getSql(StatementScope statementScope, Object parameterObject) -
Uses of StatementScope in com.ibatis.sqlmap.engine.mapping.sql.stat
Methods in com.ibatis.sqlmap.engine.mapping.sql.stat with parameters of type StatementScopeModifier and TypeMethodDescriptionvoidStaticSql.cleanup(StatementScope statementScope) StaticSql.getParameterMap(StatementScope statementScope, Object parameterObject) StaticSql.getResultMap(StatementScope statementScope, Object parameterObject) StaticSql.getSql(StatementScope statementScope, Object parameterObject) -
Uses of StatementScope in com.ibatis.sqlmap.engine.mapping.statement
Methods in com.ibatis.sqlmap.engine.mapping.statement with parameters of type StatementScopeModifier and TypeMethodDescriptionCachingStatement.executeQueryForList(StatementScope statementScope, Transaction trans, Object parameterObject, int skipResults, int maxResults) DeleteStatement.executeQueryForList(StatementScope statementScope, Transaction trans, Object parameterObject, int skipResults, int maxResults) InsertStatement.executeQueryForList(StatementScope statementScope, Transaction trans, Object parameterObject, int skipResults, int maxResults) MappedStatement.executeQueryForList(StatementScope statementScope, Transaction trans, Object parameterObject, int skipResults, int maxResults) Execute query for list.SelectKeyStatement.executeQueryForList(StatementScope statementScope, Transaction trans, Object parameterObject, int skipResults, int maxResults) UpdateStatement.executeQueryForList(StatementScope statementScope, Transaction trans, Object parameterObject, int skipResults, int maxResults) CachingStatement.executeQueryForObject(StatementScope statementScope, Transaction trans, Object parameterObject, Object resultObject) DeleteStatement.executeQueryForObject(StatementScope statementScope, Transaction trans, Object parameterObject, Object resultObject) InsertStatement.executeQueryForObject(StatementScope statementScope, Transaction trans, Object parameterObject, Object resultObject) MappedStatement.executeQueryForObject(StatementScope statementScope, Transaction trans, Object parameterObject, Object resultObject) Execute query for object.UpdateStatement.executeQueryForObject(StatementScope statementScope, Transaction trans, Object parameterObject, Object resultObject) protected voidMappedStatement.executeQueryWithCallback(StatementScope statementScope, Connection conn, Object parameterObject, Object resultObject, RowHandler rowHandler, int skipResults, int maxResults) Execute query with callback.voidCachingStatement.executeQueryWithRowHandler(StatementScope statementScope, Transaction trans, Object parameterObject, RowHandler rowHandler) voidDeleteStatement.executeQueryWithRowHandler(StatementScope statementScope, Transaction trans, Object parameterObject, RowHandler rowHandler) voidInsertStatement.executeQueryWithRowHandler(StatementScope statementScope, Transaction trans, Object parameterObject, RowHandler rowHandler) voidMappedStatement.executeQueryWithRowHandler(StatementScope statementScope, Transaction trans, Object parameterObject, RowHandler rowHandler) Execute query with row handler.voidSelectKeyStatement.executeQueryWithRowHandler(StatementScope statementScope, Transaction trans, Object parameterObject, RowHandler rowHandler) voidUpdateStatement.executeQueryWithRowHandler(StatementScope statementScope, Transaction trans, Object parameterObject, RowHandler rowHandler) intCachingStatement.executeUpdate(StatementScope statementScope, Transaction trans, Object parameterObject) intMappedStatement.executeUpdate(StatementScope statementScope, Transaction trans, Object parameterObject) Execute update.intSelectStatement.executeUpdate(StatementScope statementScope, Transaction trans, Object parameterObject) CachingStatement.getCacheKey(StatementScope statementScope, Object parameterObject) MappedStatement.getCacheKey(StatementScope statementScope, Object parameterObject) Gets the cache key.voidRowHandlerCallback.handleResultObject(StatementScope statementScope, Object[] results, ResultSet rs) Prepares the row object, and passes it to the row handler.voidCachingStatement.initRequest(StatementScope statementScope) voidMappedStatement.initRequest(StatementScope statementScope) Inits the request.protected voidMappedStatement.postProcessParameterObject(StatementScope statementScope, Object parameterObject, Object[] parameters) Post process parameter object.protected voidProcedureStatement.postProcessParameterObject(StatementScope statementScope, Object parameterObject, Object[] parameters) protected voidMappedStatement.sqlExecuteQuery(StatementScope statementScope, Connection conn, String sqlString, Object[] parameters, int skipResults, int maxResults, RowHandlerCallback callback) Sql execute query.protected voidProcedureStatement.sqlExecuteQuery(StatementScope statementScope, Connection conn, String sqlString, Object[] parameters, int skipResults, int maxResults, RowHandlerCallback callback) protected intMappedStatement.sqlExecuteUpdate(StatementScope statementScope, Connection conn, String sqlString, Object[] parameters) Sql execute update.protected intProcedureStatement.sqlExecuteUpdate(StatementScope statementScope, Connection conn, String sqlString, Object[] parameters)