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 TypeMethodDescriptionvoidDefaultSqlExecutor.cleanup(SessionScope sessionScope) Clean up any batches on the sessionvoidSqlExecutor.cleanup(SessionScope sessionScope) Clean up any batches on the session.intDefaultSqlExecutor.executeBatch(SessionScope sessionScope) Execute a batch of statementsintSqlExecutor.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 SessionScopeSqlMapSessionImpl.sessionScopeThe session scope.Methods in com.ibatis.sqlmap.engine.impl that return SessionScopeModifier and TypeMethodDescriptionprotected SessionScopeSqlMapExecutorDelegate.beginSessionScope()Begin session scope.Methods in com.ibatis.sqlmap.engine.impl with parameters of type SessionScopeModifier and TypeMethodDescriptionprotected voidSqlMapExecutorDelegate.autoCommitTransaction(SessionScope sessionScope, boolean autoStart) Auto commit transaction.protected voidSqlMapExecutorDelegate.autoEndTransaction(SessionScope sessionScope, boolean autoStart) Auto end transaction.protected TransactionSqlMapExecutorDelegate.autoStartTransaction(SessionScope sessionScope, boolean autoStart, Transaction trans) Auto start transaction.protected StatementScopeSqlMapExecutorDelegate.beginStatementScope(SessionScope sessionScope, MappedStatement mappedStatement) Begin statement scope.voidSqlMapExecutorDelegate.commitTransaction(SessionScope sessionScope) Commit the transaction on a session.intSqlMapExecutorDelegate.delete(SessionScope sessionScope, String id, Object param) Execute a delete statement.protected voidSqlMapExecutorDelegate.endSessionScope(SessionScope sessionScope) End session scope.voidSqlMapExecutorDelegate.endTransaction(SessionScope sessionScope) End the transaction on a session.intSqlMapExecutorDelegate.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 deprecatedvoidSqlMapExecutorDelegate.queryWithRowHandler(SessionScope sessionScope, String id, Object paramObject, RowHandler rowHandler) Execute a query with a row handler.voidSqlMapExecutorDelegate.setUserProvidedTransaction(SessionScope sessionScope, Connection userConnection) Use a user-provided transaction for a session.voidSqlMapExecutorDelegate.startBatch(SessionScope sessionScope) Start a batch for a session.voidSqlMapExecutorDelegate.startTransaction(SessionScope sessionScope) Start a transaction on the session.voidSqlMapExecutorDelegate.startTransaction(SessionScope sessionScope, int transactionIsolation) Start a transaction on the session with the specified isolation level.intSqlMapExecutorDelegate.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 TypeMethodDescriptionvoidTransactionManager.begin(SessionScope sessionScope) Begin.voidTransactionManager.begin(SessionScope sessionScope, int transactionIsolation) Begin.voidTransactionManager.commit(SessionScope sessionScope) Commit.voidTransactionManager.end(SessionScope sessionScope) End.