Uses of Class
org.sormula.active.ActiveDatabase

Packages that use ActiveDatabase
org.sormula.active An implementation of the active record pattern built on top of sormula. 
org.sormula.active.operation Thread-safe and transaction-compliant database operations used by ActiveTable
 

Uses of ActiveDatabase in org.sormula.active
 

Methods in org.sormula.active that return ActiveDatabase
 ActiveDatabase ActiveTransaction.getActiveDatabase()
          Gets the active database associated with this transaction.
 ActiveDatabase ActiveTable.getActiveDatabase()
          Gets the active database.
 ActiveDatabase ActiveRecord.getActiveDatabase()
          Gets database set by ActiveRecord.attach(ActiveDatabase).
static ActiveDatabase ActiveDatabase.getDefault()
          Gets the active database to use when none is specified.
 

Methods in org.sormula.active with parameters of type ActiveDatabase
 void ActiveRecord.attach(ActiveDatabase activeDatabase)
          Associates an active database with this active record.
static void ActiveDatabase.setDefault(ActiveDatabase activeDatabase)
          Sets the default active database.
 

Constructors in org.sormula.active with parameters of type ActiveDatabase
ActiveTable(ActiveDatabase activeDatabase, java.lang.Class<R> recordClass)
          Constructs for a database and record type.
ActiveTransaction(ActiveDatabase activeDatabase)
          Constructs an ActiveDatabase.
 

Uses of ActiveDatabase in org.sormula.active.operation
 

Methods in org.sormula.active.operation that return ActiveDatabase
 ActiveDatabase OperationDatabase.getActiveDatabase()
          Gets the active database supplied in the constructor.
 

Constructors in org.sormula.active.operation with parameters of type ActiveDatabase
OperationDatabase(ActiveDatabase activeDatabase)
          Constructs for an active database.