Uses of Class
org.makumba.db.makumba.sql.Database

Packages that use Database
org.makumba.db.makumba.sql The generic SQL-92 implementation of the makumba database layer. 
 

Uses of Database in org.makumba.db.makumba.sql
 

Subclasses of Database in org.makumba.db.makumba.sql
 class CloudscapeDatabase
          the database adapter for PostgreSQL
 class DbcpDatabase
          the database adapter for PostgreSQL
 class HsqldbDatabase
          the database adapter for Hsqldb
 class MsqlDatabase
          The msql particularities of the database
 class MsSqlDatabase
          the database adapter for Microsoft SQL Server
 class MySqlDatabase
          the database adapter for MySQL Server
 class OracleDatabase
          the database adapter for PostgreSQL
 class PgsqlDatabase
          the database adapter for PostgreSQL
 class QedDatabase
          the database adapter for PostgreSQL
 

Fields in org.makumba.db.makumba.sql declared as Database
(package private)  Database Query.db
           
(package private)  Database SQLUpdate.db
           
 

Methods in org.makumba.db.makumba.sql that return Database
protected  Database TableManager.getSQLDatabase()
           
 

Methods in org.makumba.db.makumba.sql with parameters of type Database
 String TableManager.base_inCreate(String fieldName, Database d)
           
protected  String TableManager.getFieldDBType(String fieldName, Database d)
          what is the database level type of this field?
 String TableManager.in_boolean_Create(String fieldName, Database d)
          write in CREATE, in the form name BIT(1)
 String TableManager.in_char_Create(String fieldName, Database d)
          write in CREATE, in the form name char[size]
 String MsqlTableManager.inCreate(String fieldName, Database d)
          msql needs an 'approximative size' for text fields.
 String TableManager.inCreate(String fieldName, Database d)
          ask this field to write its contribution in a SQL CREATE statement
 String DbcpTableManager.inCreate(String fieldName, Database d)
          ask this field to write its contribution in a SQL CREATE statement
 String CloudscapeTableManager.inCreate(String fieldName, Database d)
          ask this field to write its contribution in a SQL CREATE statement
 

Constructors in org.makumba.db.makumba.sql with parameters of type Database
Query(Database db, String MQLQuery, String insertIn)
           
SQLUpdate(Database db, String from, String setWhere, String DELIM)