Uses of Class
org.radrails.db.core.DatabaseDescriptor

Packages that use DatabaseDescriptor
org.radrails.db.core   
org.radrails.db.core.ibmdb2   
org.radrails.db.core.mysql   
org.radrails.db.core.oracle   
org.radrails.db.core.postgresql   
org.radrails.db.core.sqlite   
org.radrails.db.core.sqlserver   
 

Uses of DatabaseDescriptor in org.radrails.db.core
 

Methods in org.radrails.db.core that return DatabaseDescriptor
 DatabaseDescriptor YMLFile.getDbDevelopment()
          Gets the dbDevelopment.
 DatabaseDescriptor YMLFile.getDbProduction()
          Gets the dbProduction.
 DatabaseDescriptor YMLFile.getDbTest()
          Gets the dbTest.
 

Methods in org.radrails.db.core with parameters of type DatabaseDescriptor
 boolean DatabaseConnection.testConnect(DatabaseDescriptor descriptor)
          Tests if able to get a connection to a database.
abstract  java.sql.Connection DatabaseConnection.connect(DatabaseDescriptor descriptor)
          Gets a connection to a database.
 

Constructors in org.radrails.db.core with parameters of type DatabaseDescriptor
DatabaseDescriptor(YMLFile parent, DatabaseDescriptor desc)
          Copy constructor.
 

Uses of DatabaseDescriptor in org.radrails.db.core.ibmdb2
 

Methods in org.radrails.db.core.ibmdb2 with parameters of type DatabaseDescriptor
 java.sql.Connection IBMDB2DatabaseConnection.connect(DatabaseDescriptor desc)
           
 

Uses of DatabaseDescriptor in org.radrails.db.core.mysql
 

Methods in org.radrails.db.core.mysql with parameters of type DatabaseDescriptor
 java.sql.Connection MySQLDatabaseConnection.connect(DatabaseDescriptor desc)
           
 

Uses of DatabaseDescriptor in org.radrails.db.core.oracle
 

Methods in org.radrails.db.core.oracle with parameters of type DatabaseDescriptor
 java.sql.Connection OracleDatabaseConnection.connect(DatabaseDescriptor desc)
           
 

Uses of DatabaseDescriptor in org.radrails.db.core.postgresql
 

Methods in org.radrails.db.core.postgresql with parameters of type DatabaseDescriptor
 java.sql.Connection PostgreSQLDatabaseConnection.connect(DatabaseDescriptor desc)
           
 

Uses of DatabaseDescriptor in org.radrails.db.core.sqlite
 

Methods in org.radrails.db.core.sqlite with parameters of type DatabaseDescriptor
 java.sql.Connection SQLiteDatabaseConnection.connect(DatabaseDescriptor desc)
           
 

Uses of DatabaseDescriptor in org.radrails.db.core.sqlserver
 

Methods in org.radrails.db.core.sqlserver with parameters of type DatabaseDescriptor
 java.sql.Connection SQLServerDatabaseConnection.connect(DatabaseDescriptor desc)