Uses of Class
com.ibatis.sqlmap.engine.scope.StatementScope

Packages that use StatementScope
com.ibatis.sqlmap.engine.exchange   
com.ibatis.sqlmap.engine.execution   
com.ibatis.sqlmap.engine.impl   
com.ibatis.sqlmap.engine.mapping.parameter   
com.ibatis.sqlmap.engine.mapping.result   
com.ibatis.sqlmap.engine.mapping.sql   
com.ibatis.sqlmap.engine.mapping.sql.dynamic   
com.ibatis.sqlmap.engine.mapping.sql.raw   
com.ibatis.sqlmap.engine.mapping.sql.simple   
com.ibatis.sqlmap.engine.mapping.sql.stat   
com.ibatis.sqlmap.engine.mapping.statement   
 

Uses of StatementScope in com.ibatis.sqlmap.engine.exchange
 

Methods in com.ibatis.sqlmap.engine.exchange with parameters of type StatementScope
 CacheKey DataExchange.getCacheKey(StatementScope statementScope, ParameterMap parameterMap, Object parameterObject)
          Returns an object capable of being a unique cache key for a parameter object.
 CacheKey BaseDataExchange.getCacheKey(StatementScope statementScope, ParameterMap parameterMap, Object parameterObject)
           
 Object[] PrimitiveDataExchange.getData(StatementScope statementScope, ParameterMap parameterMap, Object parameterObject)
           
 Object[] MapDataExchange.getData(StatementScope statementScope, ParameterMap parameterMap, Object parameterObject)
           
 Object[] ListDataExchange.getData(StatementScope statementScope, ParameterMap parameterMap, Object parameterObject)
           
 Object[] JavaBeanDataExchange.getData(StatementScope statementScope, ParameterMap parameterMap, Object parameterObject)
           
 Object[] DomDataExchange.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[] ComplexDataExchange.getData(StatementScope statementScope, ParameterMap parameterMap, Object parameterObject)
           
 Object PrimitiveDataExchange.setData(StatementScope statementScope, ParameterMap parameterMap, Object parameterObject, Object[] values)
           
 Object MapDataExchange.setData(StatementScope statementScope, ParameterMap parameterMap, Object parameterObject, Object[] values)
           
 Object ListDataExchange.setData(StatementScope statementScope, ParameterMap parameterMap, Object parameterObject, Object[] values)
           
 Object JavaBeanDataExchange.setData(StatementScope statementScope, ParameterMap parameterMap, Object parameterObject, Object[] values)
           
 Object DomDataExchange.setData(StatementScope statementScope, ParameterMap parameterMap, Object parameterObject, Object[] values)
           
 Object DataExchange.setData(StatementScope statementScope, ParameterMap parameterMap, Object parameterObject, Object[] values)
          Sets values from a data array into a parameter object
 Object ComplexDataExchange.setData(StatementScope statementScope, ParameterMap parameterMap, Object parameterObject, Object[] values)
           
 Object PrimitiveDataExchange.setData(StatementScope statementScope, ResultMap resultMap, Object resultObject, Object[] values)
           
 Object MapDataExchange.setData(StatementScope statementScope, ResultMap resultMap, Object resultObject, Object[] values)
           
 Object ListDataExchange.setData(StatementScope statementScope, ResultMap resultMap, Object resultObject, Object[] values)
           
 Object JavaBeanDataExchange.setData(StatementScope statementScope, ResultMap resultMap, Object resultObject, Object[] values)
           
 Object DomDataExchange.setData(StatementScope statementScope, ResultMap resultMap, Object resultObject, Object[] values)
           
 Object DataExchange.setData(StatementScope statementScope, ResultMap resultMap, Object resultObject, Object[] values)
          Sets values from a data array into a result object.
 Object ComplexDataExchange.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 StatementScope
 void SqlExecutor.addBatch(StatementScope statementScope, Connection conn, String sql, Object[] parameters)
          Adds a statement to a batch
 void DefaultSqlExecutor.addBatch(StatementScope statementScope, Connection conn, String sql, Object[] parameters)
          Adds a statement to a batch
 void SqlExecutor.executeQuery(StatementScope statementScope, Connection conn, String sql, Object[] parameters, int skipResults, int maxResults, RowHandlerCallback callback)
          Long form of the method to execute a query
 void DefaultSqlExecutor.executeQuery(StatementScope statementScope, Connection conn, String sql, Object[] parameters, int skipResults, int maxResults, RowHandlerCallback callback)
          Long form of the method to execute a query
 void SqlExecutor.executeQueryProcedure(StatementScope statementScope, Connection conn, String sql, Object[] parameters, int skipResults, int maxResults, RowHandlerCallback callback)
          Execute a stored procedure
 void DefaultSqlExecutor.executeQueryProcedure(StatementScope statementScope, Connection conn, String sql, Object[] parameters, int skipResults, int maxResults, RowHandlerCallback callback)
          Execute a stored procedure
 int SqlExecutor.executeUpdate(StatementScope statementScope, Connection conn, String sql, Object[] parameters)
          Execute an update
 int DefaultSqlExecutor.executeUpdate(StatementScope statementScope, Connection conn, String sql, Object[] parameters)
          Execute an update
 int SqlExecutor.executeUpdateProcedure(StatementScope statementScope, Connection conn, String sql, Object[] parameters)
          Execute a stored procedure that updates data
 int DefaultSqlExecutor.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 StatementScope
protected  StatementScope SqlMapExecutorDelegate.beginStatementScope(SessionScope sessionScope, MappedStatement mappedStatement)
           
 

Methods in com.ibatis.sqlmap.engine.impl with parameters of type StatementScope
protected  void SqlMapExecutorDelegate.endStatementScope(StatementScope statementScope)
           
 

Uses of StatementScope in com.ibatis.sqlmap.engine.mapping.parameter
 

Methods in com.ibatis.sqlmap.engine.mapping.parameter with parameters of type StatementScope
 CacheKey ParameterMap.getCacheKey(StatementScope statementScope, Object parameterObject)
           
 Object[] ParameterMap.getParameterObjectValues(StatementScope statementScope, Object parameterObject)
           
 Object[] NoParameterMap.getParameterObjectValues(StatementScope statementScope, Object parameterObject)
           
 void ParameterMap.refreshParameterObjectValues(StatementScope statementScope, Object parameterObject, Object[] values)
           
 void ParameterMap.setParameters(StatementScope statementScope, PreparedStatement ps, Object[] parameters)
           
 

Uses of StatementScope in com.ibatis.sqlmap.engine.mapping.result
 

Methods in com.ibatis.sqlmap.engine.mapping.result with parameters of type StatementScope
protected  Object ResultMap.getNestedSelectMappingValue(StatementScope statementScope, ResultSet rs, ResultMapping mapping, Class targetType)
           
 Object[] ResultMap.getResults(StatementScope statementScope, ResultSet rs)
          Read a row from a resultset and map results to an array.
 Object[] AutoResultMap.getResults(StatementScope statementScope, ResultSet rs)
           
 ResultMap ResultMap.resolveSubMap(StatementScope statementScope, ResultSet rs)
           
protected  void ResultMap.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.
 Object ResultMap.setResultObjectValues(StatementScope statementScope, Object resultObject, Object[] values)
           
 Object AutoResultMap.setResultObjectValues(StatementScope statementScope, Object resultObject, Object[] values)
           
 

Uses of StatementScope in com.ibatis.sqlmap.engine.mapping.sql
 

Methods in com.ibatis.sqlmap.engine.mapping.sql with parameters of type StatementScope
 void Sql.cleanup(StatementScope statementScope)
           
 ParameterMap Sql.getParameterMap(StatementScope statementScope, Object parameterObject)
           
 ResultMap Sql.getResultMap(StatementScope statementScope, Object parameterObject)
           
 String Sql.getSql(StatementScope statementScope, Object parameterObject)
           
 

Uses of StatementScope in com.ibatis.sqlmap.engine.mapping.sql.dynamic
 

Methods in com.ibatis.sqlmap.engine.mapping.sql.dynamic with parameters of type StatementScope
 void DynamicSql.cleanup(StatementScope statementScope)
           
 ParameterMap DynamicSql.getParameterMap(StatementScope statementScope, Object parameterObject)
           
 ResultMap DynamicSql.getResultMap(StatementScope statementScope, Object parameterObject)
           
 String 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 StatementScope
 void RawSql.cleanup(StatementScope statementScope)
           
 ParameterMap RawSql.getParameterMap(StatementScope statementScope, Object parameterObject)
           
 ResultMap RawSql.getResultMap(StatementScope statementScope, Object parameterObject)
           
 String 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 StatementScope
 void SimpleDynamicSql.cleanup(StatementScope statementScope)
           
 ParameterMap SimpleDynamicSql.getParameterMap(StatementScope statementScope, Object parameterObject)
           
 ResultMap SimpleDynamicSql.getResultMap(StatementScope statementScope, Object parameterObject)
           
 String 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 StatementScope
 void StaticSql.cleanup(StatementScope statementScope)
           
 ParameterMap StaticSql.getParameterMap(StatementScope statementScope, Object parameterObject)
           
 ResultMap StaticSql.getResultMap(StatementScope statementScope, Object parameterObject)
           
 String 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 StatementScope
 List UpdateStatement.executeQueryForList(StatementScope statementScope, Transaction trans, Object parameterObject, int skipResults, int maxResults)
           
 List SelectKeyStatement.executeQueryForList(StatementScope statementScope, Transaction trans, Object parameterObject, int skipResults, int maxResults)
           
 List MappedStatement.executeQueryForList(StatementScope statementScope, Transaction trans, Object parameterObject, int skipResults, int maxResults)
           
 List InsertStatement.executeQueryForList(StatementScope statementScope, Transaction trans, Object parameterObject, int skipResults, int maxResults)
           
 List DeleteStatement.executeQueryForList(StatementScope statementScope, Transaction trans, Object parameterObject, int skipResults, int maxResults)
           
 List CachingStatement.executeQueryForList(StatementScope statementScope, Transaction trans, Object parameterObject, int skipResults, int maxResults)
           
 Object UpdateStatement.executeQueryForObject(StatementScope statementScope, Transaction trans, Object parameterObject, Object resultObject)
           
 Object MappedStatement.executeQueryForObject(StatementScope statementScope, Transaction trans, Object parameterObject, Object resultObject)
           
 Object InsertStatement.executeQueryForObject(StatementScope statementScope, Transaction trans, Object parameterObject, Object resultObject)
           
 Object DeleteStatement.executeQueryForObject(StatementScope statementScope, Transaction trans, Object parameterObject, Object resultObject)
           
 Object CachingStatement.executeQueryForObject(StatementScope statementScope, Transaction trans, Object parameterObject, Object resultObject)
           
protected  void MappedStatement.executeQueryWithCallback(StatementScope statementScope, Connection conn, Object parameterObject, Object resultObject, RowHandler rowHandler, int skipResults, int maxResults)
           
 void UpdateStatement.executeQueryWithRowHandler(StatementScope statementScope, Transaction trans, Object parameterObject, RowHandler rowHandler)
           
 void SelectKeyStatement.executeQueryWithRowHandler(StatementScope statementScope, Transaction trans, Object parameterObject, RowHandler rowHandler)
           
 void MappedStatement.executeQueryWithRowHandler(StatementScope statementScope, Transaction trans, Object parameterObject, RowHandler rowHandler)
           
 void InsertStatement.executeQueryWithRowHandler(StatementScope statementScope, Transaction trans, Object parameterObject, RowHandler rowHandler)
           
 void DeleteStatement.executeQueryWithRowHandler(StatementScope statementScope, Transaction trans, Object parameterObject, RowHandler rowHandler)
           
 void CachingStatement.executeQueryWithRowHandler(StatementScope statementScope, Transaction trans, Object parameterObject, RowHandler rowHandler)
           
 int SelectStatement.executeUpdate(StatementScope statementScope, Transaction trans, Object parameterObject)
           
 int MappedStatement.executeUpdate(StatementScope statementScope, Transaction trans, Object parameterObject)
           
 int CachingStatement.executeUpdate(StatementScope statementScope, Transaction trans, Object parameterObject)
           
 CacheKey MappedStatement.getCacheKey(StatementScope statementScope, Object parameterObject)
           
 CacheKey CachingStatement.getCacheKey(StatementScope statementScope, Object parameterObject)
           
 void RowHandlerCallback.handleResultObject(StatementScope statementScope, Object[] results, ResultSet rs)
          Prepares the row object, and passes it to the row handler
 void MappedStatement.initRequest(StatementScope statementScope)
           
 void CachingStatement.initRequest(StatementScope statementScope)
           
protected  void ProcedureStatement.postProcessParameterObject(StatementScope statementScope, Object parameterObject, Object[] parameters)
           
protected  void MappedStatement.postProcessParameterObject(StatementScope statementScope, Object parameterObject, Object[] parameters)
           
protected  void ProcedureStatement.sqlExecuteQuery(StatementScope statementScope, Connection conn, String sqlString, Object[] parameters, int skipResults, int maxResults, RowHandlerCallback callback)
           
protected  void MappedStatement.sqlExecuteQuery(StatementScope statementScope, Connection conn, String sqlString, Object[] parameters, int skipResults, int maxResults, RowHandlerCallback callback)
           
protected  int ProcedureStatement.sqlExecuteUpdate(StatementScope statementScope, Connection conn, String sqlString, Object[] parameters)
           
protected  int MappedStatement.sqlExecuteUpdate(StatementScope statementScope, Connection conn, String sqlString, Object[] parameters)
           
 



Copyright © 2010. All Rights Reserved.