Uses of Interface
com.mckoi.database.InternalTableInfo
-
Packages that use InternalTableInfo Package Description com.mckoi.database The core database classes for Mckoi. -
-
Uses of InternalTableInfo in com.mckoi.database
Classes in com.mckoi.database that implement InternalTableInfo Modifier and Type Class Description (package private) class
AbstractInternalTableInfo
An implementation of InternalTableInfo that provides a number of methods to aid in the productions of the InternalTableInfo interface.(package private) class
AbstractInternalTableInfo2
An implementation of InternalTableInfo that provides a number of methods to aid in the productions of the InternalTableInfo interface for a transaction specific model of a set of tables that is based on a single system table.private static class
ConnectionTriggerManager.TriggerInternalTableInfo
An object that models the list of triggers as table objects in a transaction.private class
DatabaseConnection.ConnectionInternalTableInfo
An internal table info object that handles tables internal to a DatabaseConnection object.private class
DatabaseConnection.OldAndNewInternalTableInfo
An internal table info object that handles OLD and NEW tables for triggered actions.private static class
ProcedureManager.ProcedureInternalTableInfo
An object that models the list of procedures as table objects in a transaction.private static class
SequenceManager.SequenceInternalTableInfo
An object that models the list of sequences as table objects in a transaction.private class
Transaction.TransactionInternalTables
A static internal table info for internal tables to the transaction.private static class
ViewManager.ViewInternalTableInfo
An object that models the list of views as table objects in a transaction.Fields in com.mckoi.database declared as InternalTableInfo Modifier and Type Field Description private InternalTableInfo[]
Transaction. internal_tables
The list of InternalTableInfo objects that are containers for generating internal tables (GTDataSource).Methods in com.mckoi.database that return InternalTableInfo Modifier and Type Method Description (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.Methods in com.mckoi.database with parameters of type InternalTableInfo Modifier and Type Method Description (package private) void
Transaction. addInternalTableInfo(InternalTableInfo info)
Adds an internal table container (InternalTableInfo) used to resolve internal tables.
-