(package private) static void |
SequenceManager.addNativeTableGenerator(Transaction transaction,
TableName table_name) |
Static convenience - adds an entry to the Sequence table for a native
table in the database.
|
(package private) void |
OpenTransactionList.addTransaction(Transaction transaction) |
Adds a new open transaction to the list.
|
private void |
TableDataConglomerate.closeTransaction(Transaction transaction) |
This is called to notify the conglomerate that the transaction has
closed.
|
(package private) static InternalTableInfo |
ConnectionTriggerManager.createInternalTableInfo(Transaction transaction) |
Returns an InternalTableInfo object used to model the list of triggers
that are accessible within the given Transaction object.
|
(package private) static InternalTableInfo |
ProcedureManager.createInternalTableInfo(Transaction transaction) |
Returns an InternalTableInfo object used to model the list of procedures
that are accessible within the given Transaction object.
|
(package private) static InternalTableInfo |
SequenceManager.createInternalTableInfo(Transaction transaction) |
Returns an InternalTableInfo object used to model the list of sequence
generators that are accessible within the given Transaction object.
|
(package private) static InternalTableInfo |
ViewManager.createInternalTableInfo(ViewManager manager,
Transaction transaction) |
Returns an InternalTableInfo object used to model the list of views
that are accessible within the given Transaction object.
|
(package private) static void |
SequenceManager.createSequenceGenerator(Transaction transaction,
TableName table_name,
long start_value,
long increment_by,
long min_value,
long max_value,
long cache,
boolean cycle) |
Creates a new sequence generator with the given name and details.
|
(package private) static void |
SequenceManager.dropSequenceGenerator(Transaction transaction,
TableName table_name) |
|
(package private) long |
OpenTransactionList.minimumCommitID(Transaction transaction) |
Returns the minimum commit id not including the given transaction object.
|
(package private) void |
TableDataConglomerate.processCommit(Transaction transaction,
java.util.ArrayList visible_tables,
java.util.ArrayList selected_from_tables,
java.util.ArrayList touched_tables,
TransactionJournal journal) |
Tries to commit a transaction to the conglomerate.
|
(package private) void |
TableDataConglomerate.processRollback(Transaction transaction,
java.util.ArrayList touched_tables,
TransactionJournal journal) |
Rollbacks a transaction and invalidates any changes that the transaction
made to the database.
|
(package private) static void |
SequenceManager.removeNativeTableGenerator(Transaction transaction,
TableName table_name) |
Static convenience - removes an entry in the Sequence table for a native
table in the database.
|
(package private) void |
OpenTransactionList.removeTransaction(Transaction transaction) |
Removes an open transaction from the list.
|