Uses of Interface
org.jminor.common.db.Database

Packages that use Database
org.jminor.common.db   
org.jminor.common.db.dbms   
org.jminor.common.db.tools   
org.jminor.framework.db   
org.jminor.framework.db.provider   
org.jminor.framework.tools.generator   
 

Uses of Database in org.jminor.common.db
 

Classes in org.jminor.common.db that implement Database
 class AbstractDatabase
          A default abstract implementation of the Database interface.
 

Methods in org.jminor.common.db that return Database
static Database Databases.createInstance()
           
 Database PoolableConnection.getDatabase()
           
 Database DatabaseConnectionImpl.getDatabase()
          
 

Methods in org.jminor.common.db with parameters of type Database
static DatabaseConnection DatabaseConnections.createConnection(Database database, User user)
          Constructs a new DatabaseConnection instance, based on the given Connection object.
static DatabaseConnection DatabaseConnections.createConnection(Database database, User user, Connection connection)
          Constructs a new DatabaseConnection instance, based on the given Connection object.
 

Constructors in org.jminor.common.db with parameters of type Database
DatabaseConnectionImpl(Database database, User user)
          Constructs a new DatabaseConnectionImpl instance, initialized and ready for usage
DatabaseConnectionImpl(Database database, User user, Connection connection)
          Constructs a new DatabaseConnectionImpl instance, based on the given Connection object.
 

Uses of Database in org.jminor.common.db.dbms
 

Classes in org.jminor.common.db.dbms that implement Database
 class DerbyDatabase
          A Database implementation based on the Derby database.
 class H2Database
          A Database implementation based on the H2 database.
 class HSQLDatabase
          A Database implementation based on the HSQL database.
 class MySQLDatabase
          A Database implementation based on the MySQL database.
 class OracleDatabase
          A Database implementation based on the Oracle database.
 class PostgreSQLDatabase
          A Database implementation based on the PostgreSQL database.
 class SQLServerDatabase
          A Database implementation based on the SQL Server (2000 or higher) database.
 

Uses of Database in org.jminor.common.db.tools
 

Constructors in org.jminor.common.db.tools with parameters of type Database
QueryLoadTestModel(Database database, User user, Collection<? extends QueryLoadTestModel.QueryScenario> scenarios)
          Instantiates a new QueryLoadTest.
 

Uses of Database in org.jminor.framework.db
 

Methods in org.jminor.framework.db with parameters of type Database
static EntityConnection EntityConnections.createConnection(Connection connection, Database database, User user)
          Constructs a new EntityConnection instance
static EntityConnection EntityConnections.createConnection(Database database, User user)
          Constructs a new EntityConnection instance
 

Uses of Database in org.jminor.framework.db.provider
 

Constructors in org.jminor.framework.db.provider with parameters of type Database
LocalEntityConnectionProvider(User user, Database database)
          Instantiates a new LocalEntityConnectionProvider
 

Uses of Database in org.jminor.framework.tools.generator
 

Constructors in org.jminor.framework.tools.generator with parameters of type Database
EntityGeneratorModel(Database database, User user, String schema)
          Instantiates a new EntityGeneratorModel.