Uses of Class
org.apache.turbine.util.db.adapter.DB

Packages that use DB
org.apache.turbine.services.db   
org.apache.turbine.util.db   
org.apache.turbine.util.db.adapter   
org.apache.turbine.util.db.pool   
 

Uses of DB in org.apache.turbine.services.db
 

Methods in org.apache.turbine.services.db that return DB
 DB PoolBrokerService.getDB()
          Returns the database adapter for the default connection pool.
 DB PoolBrokerService.getDB(java.lang.String name)
          Returns database adapter for a specific connection pool.
 DB TurbinePoolBrokerService.getDB()
          Returns the database adapter for the default connection pool.
 DB TurbinePoolBrokerService.getDB(java.lang.String name)
          Returns database adapter for a specific connection pool.
static DB TurbineDB.getDB()
          Returns the database adapter for the default connection pool.
static DB TurbineDB.getDB(java.lang.String name)
          Returns database adapter for a specific connection pool.
 

Uses of DB in org.apache.turbine.util.db
 

Fields in org.apache.turbine.util.db declared as DB
private  DB SequenceIdGenerator.dbAdapter
           
private  DB Criteria.Criterion.db
          The DB adaptor which might be used to get db specific variations of sql.
private  DB AutoIncrementIdGenerator.dbAdapter
           
 

Methods in org.apache.turbine.util.db that return DB
 DB Criteria.Criterion.getDb()
          Get the value of db.
 

Methods in org.apache.turbine.util.db with parameters of type DB
 void Criteria.Criterion.setDB(DB v)
          Set the value of db.
static java.lang.String SqlExpression.buildInnerJoin(java.lang.String column, java.lang.String relatedColumn, boolean ignoreCase, DB db)
          Used to specify a join on two columns.
static void SqlExpression.buildInnerJoin(java.lang.String column, java.lang.String relatedColumn, boolean ignoreCase, DB db, java.lang.StringBuffer whereClause)
          Used to specify a join on two columns.
static java.lang.String SqlExpression.build(java.lang.String columnName, java.lang.Object criteria, java.lang.String comparison, boolean ignoreCase, DB db)
          Builds a simple SQL expression.
static void SqlExpression.build(java.lang.String columnName, java.lang.Object criteria, java.lang.String comparison, boolean ignoreCase, DB db, java.lang.StringBuffer whereClause)
          Builds a simple SQL expression.
(package private) static java.lang.String SqlExpression.buildLike(java.lang.String columnName, java.lang.String criteria, boolean ignoreCase, DB db)
          Takes a columnName and criteria and builds an SQL phrase based on whether wildcards are present and the state of the ignoreCase flag.
(package private) static void SqlExpression.buildLike(java.lang.String columnName, java.lang.String criteria, boolean ignoreCase, DB db, java.lang.StringBuffer whereClause)
          Takes a columnName and criteria and builds an SQL phrase based on whether wildcards are present and the state of the ignoreCase flag.
(package private) static java.lang.String SqlExpression.buildIn(java.lang.String columnName, java.lang.Object criteria, java.lang.String comparison, boolean ignoreCase, DB db)
          Takes a columnName and criteria (which must be an array) and builds a SQL 'IN' expression taking into account the ignoreCase flag.
(package private) static void SqlExpression.buildIn(java.lang.String columnName, java.lang.Object criteria, java.lang.String comparison, boolean ignoreCase, DB db, java.lang.StringBuffer whereClause)
          Takes a columnName and criteria (which must be an array) and builds a SQL 'IN' expression taking into account the ignoreCase flag.
(package private) static java.lang.String SqlExpression.processInValue(java.lang.Object value, boolean ignoreCase, DB db)
          Creates an appropriate string for an 'IN' clause from an object.
static java.lang.String SqlExpression.quoteAndEscapeText(java.lang.String rawText, DB db)
          Quotes and escapes raw text for placement in a SQL expression.
 

Constructors in org.apache.turbine.util.db with parameters of type DB
SequenceIdGenerator(DB adapter)
          Creates an IdGenerator which will work with the specified database.
AutoIncrementIdGenerator(DB adapter)
          Creates an IdGenerator which will work with the specified database.
 

Uses of DB in org.apache.turbine.util.db.adapter
 

Subclasses of DB in org.apache.turbine.util.db.adapter
 class DBDB2App
          This is used to connect via the Application-Driver to DB2 databases.
 class DBDB2Net
          This is used to connect via the NET-Driver to DB2 databases.
 class DBHypersonicSQL
          This is used to connect to Hypersonic SQL databases.
 class DBInformix
          This code should be used for an Informix database pool.
 class DBInstantDB
          This is used to connect to InstantDB databases.
 class DBInterbase
          This code should be used for an Interbase database pool.
 class DBMM
          This is used in order to connect to a MySQL database using the MM drivers.
 class DBMSSQL
          This is used to connect to a MSSQL database.
 class DBNone
          This DatabaseHandler is used when you do not have a database installed.
 class DBOdbc
          This is used to connect to ODBC Bridged databases on Win32 Platforms.
 class DBOracle
          This code should be used for an Oracle database pool.
 class DBPostgres
          This is used to connect to PostgresQL databases.
 class DBSapDB
          This is used to connect to SapDB databases.
 class DBSybase
          This is used to connect to a Sybase database using Sybase's JConnect JDBC driver.
 class DBWeblogic
          This code should be used for a Weblogic database pool.
 

Methods in org.apache.turbine.util.db.adapter that return DB
static DB DBFactory.create(java.lang.String driver)
          Creates an instance of the Turbine database adapter associated with the specified JDBC driver.
 

Uses of DB in org.apache.turbine.util.db.pool
 

Fields in org.apache.turbine.util.db.pool declared as DB
private  DB ConnectionPool.db
          The class containing the database specific info for connections in this pool (i.e.
 

Methods in org.apache.turbine.util.db.pool that return DB
 DB ConnectionPool.getDB()
          Returns an instance of the database adapter associated with this pool.
 



Copyright © 1999-2001 Apache Software Foundation. All Rights Reserved.