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

Packages that use SessionScope
com.ibatis.sqlmap.engine.execution   
com.ibatis.sqlmap.engine.impl   
com.ibatis.sqlmap.engine.scope   
com.ibatis.sqlmap.engine.transaction   
 

Uses of SessionScope in com.ibatis.sqlmap.engine.execution
 

Methods in com.ibatis.sqlmap.engine.execution with parameters of type SessionScope
 void SqlExecutor.cleanup(SessionScope sessionScope)
          Clean up any batches on the session
 void DefaultSqlExecutor.cleanup(SessionScope sessionScope)
          Clean up any batches on the session
 int SqlExecutor.executeBatch(SessionScope sessionScope)
          Execute a batch of statements
 int DefaultSqlExecutor.executeBatch(SessionScope sessionScope)
          Execute a batch of statements
 List SqlExecutor.executeBatchDetailed(SessionScope sessionScope)
          Execute a batch of statements
 List DefaultSqlExecutor.executeBatchDetailed(SessionScope sessionScope)
          Execute a batch of statements
 

Uses of SessionScope in com.ibatis.sqlmap.engine.impl
 

Fields in com.ibatis.sqlmap.engine.impl declared as SessionScope
protected  SessionScope SqlMapSessionImpl.sessionScope
           
 

Methods in com.ibatis.sqlmap.engine.impl that return SessionScope
protected  SessionScope SqlMapExecutorDelegate.beginSessionScope()
           
 

Methods in com.ibatis.sqlmap.engine.impl with parameters of type SessionScope
protected  void SqlMapExecutorDelegate.autoCommitTransaction(SessionScope sessionScope, boolean autoStart)
           
protected  void SqlMapExecutorDelegate.autoEndTransaction(SessionScope sessionScope, boolean autoStart)
           
protected  Transaction SqlMapExecutorDelegate.autoStartTransaction(SessionScope sessionScope, boolean autoStart, Transaction trans)
           
protected  StatementScope SqlMapExecutorDelegate.beginStatementScope(SessionScope sessionScope, MappedStatement mappedStatement)
           
 void SqlMapExecutorDelegate.commitTransaction(SessionScope sessionScope)
          Commit the transaction on a session
 int SqlMapExecutorDelegate.delete(SessionScope sessionScope, String id, Object param)
          Execute a delete statement
protected  void SqlMapExecutorDelegate.endSessionScope(SessionScope sessionScope)
           
 void SqlMapExecutorDelegate.endTransaction(SessionScope sessionScope)
          End the transaction on a session
 int SqlMapExecutorDelegate.executeBatch(SessionScope sessionScope)
          Execute a batch for a session
 List SqlMapExecutorDelegate.executeBatchDetailed(SessionScope sessionScope)
          Execute a batch for a session
 Transaction SqlMapExecutorDelegate.getTransaction(SessionScope sessionScope)
          Get a transaction for the session
 Object SqlMapExecutorDelegate.insert(SessionScope sessionScope, String id, Object param)
          Call an insert statement by ID
 List SqlMapExecutorDelegate.queryForList(SessionScope sessionScope, String id, Object paramObject)
          Execute a query for a list
 List SqlMapExecutorDelegate.queryForList(SessionScope sessionScope, String id, Object paramObject, int skip, int max)
          Execute a query for a list
 Map SqlMapExecutorDelegate.queryForMap(SessionScope sessionScope, String id, Object paramObject, String keyProp)
          Execute a query for a map.
 Map SqlMapExecutorDelegate.queryForMap(SessionScope sessionScope, String id, Object paramObject, String keyProp, String valueProp)
          Execute a query for a map.
 Object SqlMapExecutorDelegate.queryForObject(SessionScope sessionScope, String id, Object paramObject)
          Execute a select for a single object
 Object SqlMapExecutorDelegate.queryForObject(SessionScope sessionScope, String id, Object paramObject, Object resultObject)
          Execute a select for a single object
 PaginatedList SqlMapExecutorDelegate.queryForPaginatedList(SessionScope sessionScope, String id, Object paramObject, int pageSize)
          Deprecated. All paginated list features have been deprecated
 void SqlMapExecutorDelegate.queryWithRowHandler(SessionScope sessionScope, String id, Object paramObject, RowHandler rowHandler)
          Execute a query with a row handler.
 void SqlMapExecutorDelegate.setUserProvidedTransaction(SessionScope sessionScope, Connection userConnection)
          Use a user-provided transaction for a session
 void SqlMapExecutorDelegate.startBatch(SessionScope sessionScope)
          Start a batch for a session
 void SqlMapExecutorDelegate.startTransaction(SessionScope sessionScope)
          Start a transaction on the session
 void SqlMapExecutorDelegate.startTransaction(SessionScope sessionScope, int transactionIsolation)
          Start a transaction on the session with the specified isolation level.
 int SqlMapExecutorDelegate.update(SessionScope sessionScope, String id, Object param)
          Execute an update statement
 

Uses of SessionScope in com.ibatis.sqlmap.engine.scope
 

Methods in com.ibatis.sqlmap.engine.scope that return SessionScope
 SessionScope StatementScope.getSession()
          Get the session of the request
 

Constructors in com.ibatis.sqlmap.engine.scope with parameters of type SessionScope
StatementScope(SessionScope sessionScope)
           
 

Uses of SessionScope in com.ibatis.sqlmap.engine.transaction
 

Methods in com.ibatis.sqlmap.engine.transaction with parameters of type SessionScope
 void TransactionManager.begin(SessionScope sessionScope)
           
 void TransactionManager.begin(SessionScope sessionScope, int transactionIsolation)
           
 void TransactionManager.commit(SessionScope sessionScope)
           
 void TransactionManager.end(SessionScope sessionScope)
           
 



Copyright © 2010. All Rights Reserved.