Uses of Class
org.apache.empire.db.DBSQLScript

Packages that use DBSQLScript
org.apache.empire.db This package contains the core Empire-DB implementation classes. 
org.apache.empire.db.derby This package contains classes necessary to support the Apache Derby database system. 
org.apache.empire.db.h2 This package contains classes necessary to support the H2 database system. 
org.apache.empire.db.hsql This package contains classes necessary to support the HSQLDB database system. 
org.apache.empire.db.mysql This package contains classes necessary to support the MySQL database system. 
org.apache.empire.db.oracle This package contains classes necessary to support the Oracle database system. 
org.apache.empire.db.postgresql This package contains classes necessary to support the PostgreSQL database system. 
org.apache.empire.db.sqlserver This package contains classes necessary to support the Microsoft SQL-Server database system. 
 

Uses of DBSQLScript in org.apache.empire.db
 

Methods in org.apache.empire.db with parameters of type DBSQLScript
 boolean DBDatabase.getCreateDDLScript(DBDatabaseDriver driver, DBSQLScript script)
          Creates a DDL Script for creating all database objects on the target database.
This function may be called even if the database has not been previously opened.
 boolean DBDatabaseDriver.getDDLScript(DBCmdType type, DBObject dbo, DBSQLScript script)
          gets an SQL command for creating, modifying or deleting objects in the database (tables, columns, constraints, etc.)
 

Uses of DBSQLScript in org.apache.empire.db.derby
 

Methods in org.apache.empire.db.derby with parameters of type DBSQLScript
protected  boolean DBDatabaseDriverDerby.alterTable(DBTableColumn col, DBCmdType type, DBSQLScript script)
          Creates an alter table dll statement for adding, modifiying or droping a column.
protected  boolean DBDatabaseDriverDerby.createDatabase(DBDatabase db, DBSQLScript script, boolean createSchema)
           
protected  boolean DBDatabaseDriverDerby.createRelation(DBRelation r, DBSQLScript script)
          Returns true if the relation has been created successfully.
protected  boolean DBDatabaseDriverDerby.createTable(DBTable t, DBSQLScript script)
          Returns true if the table has been created successfully.
protected  boolean DBDatabaseDriverDerby.createView(DBView v, DBSQLScript script)
          Returns true if the view has been created successfully.
protected  boolean DBDatabaseDriverDerby.dropObject(java.lang.String name, java.lang.String objType, DBSQLScript script)
          Returns true if the object has been dropped successfully.
 boolean DBDatabaseDriverDerby.getDDLScript(DBCmdType type, DBObject dbo, DBSQLScript script)
           
 

Uses of DBSQLScript in org.apache.empire.db.h2
 

Methods in org.apache.empire.db.h2 with parameters of type DBSQLScript
protected  boolean DBDatabaseDriverH2.alterTable(DBTableColumn col, DBCmdType type, DBSQLScript script)
          Creates an alter table dll statement for adding, modifiying or droping a column.
protected  boolean DBDatabaseDriverH2.createDatabase(DBDatabase db, DBSQLScript script, boolean createSchema)
           
protected  boolean DBDatabaseDriverH2.createRelation(DBRelation r, DBSQLScript script)
          Returns true if the relation has been created successfully.
protected  boolean DBDatabaseDriverH2.createTable(DBTable t, DBSQLScript script)
          Returns true if the table has been created successfully.
protected  boolean DBDatabaseDriverH2.createView(DBView v, DBSQLScript script)
          Returns true if the view has been created successfully.
protected  boolean DBDatabaseDriverH2.dropObject(java.lang.String name, java.lang.String objType, DBSQLScript script)
          Returns true if the object has been dropped successfully.
 boolean DBDatabaseDriverH2.getDDLScript(DBCmdType type, DBObject dbo, DBSQLScript script)
           
 

Uses of DBSQLScript in org.apache.empire.db.hsql
 

Methods in org.apache.empire.db.hsql with parameters of type DBSQLScript
protected  boolean DBDatabaseDriverHSql.alterRelation(DBRelation r, DBCmdType type, DBSQLScript script)
          Returns true if the relation has been altered successfully.
protected  boolean DBDatabaseDriverHSql.alterTable(DBTableColumn col, DBCmdType type, DBSQLScript script)
          Creates an alter table dll statement for adding, modifiying or droping a column.
protected  boolean DBDatabaseDriverHSql.createDatabase(DBDatabase db, DBSQLScript script)
           
protected  boolean DBDatabaseDriverHSql.createSequence(DBDatabase db, DBTableColumn c, DBSQLScript script)
          Returns true if the sequence has been created successfully.
protected  boolean DBDatabaseDriverHSql.createTable(DBTable t, DBSQLScript script)
          Returns true if the table has been created successfully.
protected  boolean DBDatabaseDriverHSql.createView(DBView v, DBSQLScript script)
          Returns true if the view has been created successfully.
protected  boolean DBDatabaseDriverHSql.dropObject(java.lang.String name, java.lang.String objType, DBSQLScript script)
          Returns true if the object has been dropped successfully.
 boolean DBDatabaseDriverHSql.getDDLScript(DBCmdType type, DBObject dbo, DBSQLScript script)
           
 

Uses of DBSQLScript in org.apache.empire.db.mysql
 

Methods in org.apache.empire.db.mysql with parameters of type DBSQLScript
protected  boolean DBDatabaseDriverMySQL.alterTable(DBTableColumn col, DBCmdType type, DBSQLScript script)
          Creates an alter table dll statement for adding, modifiying or droping a column.
protected  boolean DBDatabaseDriverMySQL.createDatabase(DBDatabase db, DBSQLScript script, boolean createSchema)
           
protected  boolean DBDatabaseDriverMySQL.createRelation(DBRelation r, DBSQLScript script)
          Returns true if the relation has been created successfully.
protected  boolean DBDatabaseDriverMySQL.createTable(DBTable t, DBSQLScript script)
          Returns true if the table has been created successfully.
protected  boolean DBDatabaseDriverMySQL.createView(DBView v, DBSQLScript script)
          Returns true if the view has been created successfully.
protected  boolean DBDatabaseDriverMySQL.dropObject(java.lang.String name, java.lang.String objType, DBSQLScript script)
          Returns true if the object has been dropped successfully.
 boolean DBDatabaseDriverMySQL.getDDLScript(DBCmdType type, DBObject dbo, DBSQLScript script)
           
 

Uses of DBSQLScript in org.apache.empire.db.oracle
 

Methods in org.apache.empire.db.oracle with parameters of type DBSQLScript
protected  boolean DBDatabaseDriverOracle.alterTable(DBTableColumn col, DBCmdType type, DBSQLScript script)
          Creates an alter table dll statement for adding, modifiying or droping a column.
protected  boolean DBDatabaseDriverOracle.createComment(DBDatabase db, java.lang.String type, DBExpr expr, java.lang.String comment, DBSQLScript script)
          Returns true if the comment has been created successfully.
protected  boolean DBDatabaseDriverOracle.createDatabase(DBDatabase db, DBSQLScript script)
          Returns true if the database has been created successfully.
protected  boolean DBDatabaseDriverOracle.createRelation(DBRelation r, DBSQLScript script)
          Create a sql string for creating a relation and appends it to the supplied buffer
protected  boolean DBDatabaseDriverOracle.createSequence(DBDatabase db, DBTableColumn c, DBSQLScript script)
          Returns true if the sequence has been created successfully.
protected  boolean DBDatabaseDriverOracle.createTable(DBTable t, DBSQLScript script)
          Returns true if the table has been created successfully.
protected  boolean DBDatabaseDriverOracle.createView(DBView v, DBSQLScript script)
          Returns true if the view has been created successfully.
protected  boolean DBDatabaseDriverOracle.dropObject(java.lang.String name, java.lang.String objType, DBSQLScript script)
          Returns true if the object has been dropped successfully.
 boolean DBDatabaseDriverOracle.getDDLScript(DBCmdType type, DBObject dbo, DBSQLScript script)
           
 

Uses of DBSQLScript in org.apache.empire.db.postgresql
 

Methods in org.apache.empire.db.postgresql with parameters of type DBSQLScript
protected  boolean DBDatabaseDriverPostgreSQL.alterTable(DBTableColumn col, DBCmdType type, DBSQLScript script)
          Creates an alter table dll statement for adding, modifiying or droping a column.
protected  boolean DBDatabaseDriverPostgreSQL.createDatabase(DBDatabase db, DBSQLScript script)
           
protected  boolean DBDatabaseDriverPostgreSQL.createRelation(DBRelation r, DBSQLScript script)
          Returns true if the relation has been created successfully.
protected  boolean DBDatabaseDriverPostgreSQL.createSequence(DBDatabase db, DBTableColumn c, DBSQLScript script)
          Returns true if the sequence has been created successfully.
protected  boolean DBDatabaseDriverPostgreSQL.createTable(DBTable t, DBSQLScript script)
          Returns true if the table has been created successfully.
protected  boolean DBDatabaseDriverPostgreSQL.createView(DBView v, DBSQLScript script)
          Returns true if the view has been created successfully.
protected  boolean DBDatabaseDriverPostgreSQL.dropObject(java.lang.String name, java.lang.String objType, DBSQLScript script)
          Returns true if the object has been dropped successfully.
 boolean DBDatabaseDriverPostgreSQL.getDDLScript(DBCmdType type, DBObject dbo, DBSQLScript script)
           
 

Uses of DBSQLScript in org.apache.empire.db.sqlserver
 

Methods in org.apache.empire.db.sqlserver with parameters of type DBSQLScript
protected  boolean DBDatabaseDriverMSSQL.alterTable(DBTableColumn col, DBCmdType type, DBSQLScript script)
          Creates an alter table dll statement for adding, modifiying or droping a column.
protected  boolean DBDatabaseDriverMSSQL.createDatabase(DBDatabase db, DBSQLScript script, boolean createSchema)
           
protected  boolean DBDatabaseDriverMSSQL.createRelation(DBRelation r, DBSQLScript script)
          Returns true if the relation has been created successfully.
protected  boolean DBDatabaseDriverMSSQL.createTable(DBTable t, DBSQLScript script)
          Returns true if the table has been created successfully.
protected  boolean DBDatabaseDriverMSSQL.createView(DBView v, DBSQLScript script)
          Returns true if the view has been created successfully.
protected  boolean DBDatabaseDriverMSSQL.dropObject(java.lang.String name, java.lang.String objType, DBSQLScript script)
          Returns true if the object has been dropped successfully.
 boolean DBDatabaseDriverMSSQL.getDDLScript(DBCmdType type, DBObject dbo, DBSQLScript script)
           
 



Copyright © 2008-2010 Apache Software Foundation. All Rights Reserved.