public interface Transaction
Transaction
interface through a TransactionProvider
.
An application creates metadata and Source
objects in the context of the current Transaction
. Using a TransactionProvider
, an application can create a child Transaction
. An application can get and save a Transaction
and make it the current Transaction
as desired.
The changes an application makes in a Transaction
do not take effect until the application commits the Transaction
. An application can roll back a Transaction
to discard the changes instead of committing them.
TransactionProvider
Modifier and Type | Method and Description |
---|---|
UserSession |
getUserSession()
Gets the
UserSession that is the owner of this Transaction . |
UserSession getUserSession()
UserSession
that is the owner of this Transaction
. The UserSession
represents the Oracle OLAP session and the connection to the Oracle Database instance.UserSession
that owns this Transaction
.