Uses of Class
com.ibatis.sqlmap.engine.scope.SessionScope
Packages that use SessionScope
Package
Description
-
Uses of SessionScope in com.ibatis.sqlmap.engine.execution
Methods in com.ibatis.sqlmap.engine.execution with parameters of type SessionScopeModifier and TypeMethodDescriptionvoid
DefaultSqlExecutor.cleanup
(SessionScope sessionScope) Clean up any batches on the sessionvoid
SqlExecutor.cleanup
(SessionScope sessionScope) Clean up any batches on the session.int
DefaultSqlExecutor.executeBatch
(SessionScope sessionScope) Execute a batch of statementsint
SqlExecutor.executeBatch
(SessionScope sessionScope) Execute a batch of statements.DefaultSqlExecutor.executeBatchDetailed
(SessionScope sessionScope) Execute a batch of statementsSqlExecutor.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 SessionScopeModifier and TypeFieldDescriptionprotected SessionScope
SqlMapSessionImpl.sessionScope
The session scope.Methods in com.ibatis.sqlmap.engine.impl that return SessionScopeModifier and TypeMethodDescriptionprotected SessionScope
SqlMapExecutorDelegate.beginSessionScope()
Begin session scope.Methods in com.ibatis.sqlmap.engine.impl with parameters of type SessionScopeModifier and TypeMethodDescriptionprotected void
SqlMapExecutorDelegate.autoCommitTransaction
(SessionScope sessionScope, boolean autoStart) Auto commit transaction.protected void
SqlMapExecutorDelegate.autoEndTransaction
(SessionScope sessionScope, boolean autoStart) Auto end transaction.protected Transaction
SqlMapExecutorDelegate.autoStartTransaction
(SessionScope sessionScope, boolean autoStart, Transaction trans) Auto start transaction.protected StatementScope
SqlMapExecutorDelegate.beginStatementScope
(SessionScope sessionScope, MappedStatement mappedStatement) Begin statement scope.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) End session scope.void
SqlMapExecutorDelegate.endTransaction
(SessionScope sessionScope) End the transaction on a session.int
SqlMapExecutorDelegate.executeBatch
(SessionScope sessionScope) Execute a batch for a session.SqlMapExecutorDelegate.executeBatchDetailed
(SessionScope sessionScope) Execute a batch for a session.SqlMapExecutorDelegate.getTransaction
(SessionScope sessionScope) Get a transaction for the session.SqlMapExecutorDelegate.insert
(SessionScope sessionScope, String id, Object param) Call an insert statement by ID.SqlMapExecutorDelegate.queryForList
(SessionScope sessionScope, String id, Object paramObject) Execute a query for a list.SqlMapExecutorDelegate.queryForList
(SessionScope sessionScope, String id, Object paramObject, int skip, int max) Execute a query for a list.SqlMapExecutorDelegate.queryForMap
(SessionScope sessionScope, String id, Object paramObject, String keyProp) Execute a query for a map.SqlMapExecutorDelegate.queryForMap
(SessionScope sessionScope, String id, Object paramObject, String keyProp, String valueProp) Execute a query for a map.SqlMapExecutorDelegate.queryForObject
(SessionScope sessionScope, String id, Object paramObject) Execute a select for a single object.SqlMapExecutorDelegate.queryForObject
(SessionScope sessionScope, String id, Object paramObject, Object resultObject) Execute a select for a single object.SqlMapExecutorDelegate.queryForPaginatedList
(SessionScope sessionScope, String id, Object paramObject, int pageSize) Deprecated.All paginated list features have been deprecatedvoid
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 SessionScopeConstructors in com.ibatis.sqlmap.engine.scope with parameters of type SessionScopeModifierConstructorDescriptionStatementScope
(SessionScope sessionScope) Instantiates a new statement scope. -
Uses of SessionScope in com.ibatis.sqlmap.engine.transaction
Methods in com.ibatis.sqlmap.engine.transaction with parameters of type SessionScopeModifier and TypeMethodDescriptionvoid
TransactionManager.begin
(SessionScope sessionScope) Begin.void
TransactionManager.begin
(SessionScope sessionScope, int transactionIsolation) Begin.void
TransactionManager.commit
(SessionScope sessionScope) Commit.void
TransactionManager.end
(SessionScope sessionScope) End.