Uses of Class
org.apache.ddlutils.platform.CreationParameters

Packages that use CreationParameters
org.apache.ddlutils This package mainly contains the database platform abstraction, Platform and the factory to create instances for individual platforms, PlatformFactory
org.apache.ddlutils.platform This package contains the platform implementations for the individual databases. 
org.apache.ddlutils.platform.mssql This package contains the platform implementation for the Sql Server database. 
org.apache.ddlutils.platform.sybase This package contains the platform implementation for the Sybase ASE database. 
org.apache.ddlutils.task The org.apache.ddlutils.task package contains the Ant tasks provided by DdlUtils. 
 

Uses of CreationParameters in org.apache.ddlutils
 

Methods in org.apache.ddlutils with parameters of type CreationParameters
 void Platform.alterTables(java.sql.Connection connection, Database desiredDb, CreationParameters params, boolean continueOnError)
          Alters the database schema so that it match the given model.
 void Platform.alterTables(java.sql.Connection connection, java.lang.String catalog, java.lang.String schema, java.lang.String[] tableTypes, Database desiredDb, CreationParameters params, boolean continueOnError)
          Alters the database schema so that it match the given model.
 void Platform.alterTables(Database desiredDb, CreationParameters params, boolean continueOnError)
          Alters the database schema so that it match the given model.
 void Platform.alterTables(java.lang.String catalog, java.lang.String schema, java.lang.String[] tableTypes, Database desiredDb, CreationParameters params, boolean continueOnError)
          Alters the database schema so that it match the given model.
 void Platform.createTables(java.sql.Connection connection, Database model, CreationParameters params, boolean dropTablesFirst, boolean continueOnError)
          Creates the tables defined in the database model.
 void Platform.createTables(Database model, CreationParameters params, boolean dropTablesFirst, boolean continueOnError)
          Creates the tables defined in the database model.
 java.lang.String Platform.getAlterTablesSql(java.sql.Connection connection, Database desiredDb, CreationParameters params)
          Returns the SQL for altering the database schema so that it match the given model.
 java.lang.String Platform.getAlterTablesSql(java.sql.Connection connection, java.lang.String catalog, java.lang.String schema, java.lang.String[] tableTypes, Database desiredDb, CreationParameters params)
          Returns the SQL for altering the database schema so that it match the given model.
 java.lang.String Platform.getAlterTablesSql(Database desiredDb, CreationParameters params)
          Returns the SQL for altering the database schema so that it match the given model.
 java.lang.String Platform.getAlterTablesSql(java.lang.String catalog, java.lang.String schema, java.lang.String[] tableTypes, Database desiredDb, CreationParameters params)
          Returns the SQL for altering the database schema so that it match the given model.
 java.lang.String Platform.getCreateTablesSql(Database model, CreationParameters params, boolean dropTablesFirst, boolean continueOnError)
          Returns the SQL for creating the tables defined in the database model.
 

Uses of CreationParameters in org.apache.ddlutils.platform
 

Methods in org.apache.ddlutils.platform with parameters of type CreationParameters
 void SqlBuilder.alterDatabase(Database currentModel, Database desiredModel, CreationParameters params)
          Generates the DDL to modify an existing database so the schema matches the specified database schema by using drops, modifications and additions.
 void PlatformImplBase.alterTables(java.sql.Connection connection, Database desiredModel, CreationParameters params, boolean continueOnError)
          Alters the database schema so that it match the given model.
 void PlatformImplBase.alterTables(java.sql.Connection connection, java.lang.String catalog, java.lang.String schema, java.lang.String[] tableTypes, Database desiredModel, CreationParameters params, boolean continueOnError)
          Alters the database schema so that it match the given model.
 void PlatformImplBase.alterTables(Database desiredDb, CreationParameters params, boolean continueOnError)
          Alters the database schema so that it match the given model.
 void PlatformImplBase.alterTables(java.lang.String catalog, java.lang.String schema, java.lang.String[] tableTypes, Database desiredModel, CreationParameters params, boolean continueOnError)
          Alters the database schema so that it match the given model.
 void PlatformImplBase.createTables(java.sql.Connection connection, Database model, CreationParameters params, boolean dropTablesFirst, boolean continueOnError)
          Creates the tables defined in the database model.
 void SqlBuilder.createTables(Database database, CreationParameters params, boolean dropTables)
          Outputs the DDL required to drop (if requested) and (re)create all tables in the database model.
 void PlatformImplBase.createTables(Database model, CreationParameters params, boolean dropTablesFirst, boolean continueOnError)
          Creates the tables defined in the database model.
 java.lang.String PlatformImplBase.getAlterTablesSql(java.sql.Connection connection, Database desiredModel, CreationParameters params)
          Returns the SQL for altering the database schema so that it match the given model.
 java.lang.String PlatformImplBase.getAlterTablesSql(java.sql.Connection connection, java.lang.String catalog, java.lang.String schema, java.lang.String[] tableTypes, Database desiredModel, CreationParameters params)
          Returns the SQL for altering the database schema so that it match the given model.
 java.lang.String PlatformImplBase.getAlterTablesSql(Database desiredDb, CreationParameters params)
          Returns the SQL for altering the database schema so that it match the given model.
 java.lang.String PlatformImplBase.getAlterTablesSql(java.lang.String catalog, java.lang.String schema, java.lang.String[] tableTypes, Database desiredModel, CreationParameters params)
          Returns the SQL for altering the database schema so that it match the given model.
 java.lang.String PlatformImplBase.getCreateTablesSql(Database model, CreationParameters params, boolean dropTablesFirst, boolean continueOnError)
          Returns the SQL for creating the tables defined in the database model.
protected  void SqlBuilder.processChange(Database currentModel, Database desiredModel, CreationParameters params, AddForeignKeyChange change)
          Processes the change representing the addition of a foreign key.
protected  void SqlBuilder.processChange(Database currentModel, Database desiredModel, CreationParameters params, AddIndexChange change)
          Processes the change representing the addition of an index.
protected  void SqlBuilder.processChange(Database currentModel, Database desiredModel, CreationParameters params, AddTableChange change)
          Processes the change representing the addition of a table.
protected  void SqlBuilder.processChange(Database currentModel, Database desiredModel, CreationParameters params, ModelChange change)
          This is a fall-through callback which generates a warning because a specific change type wasn't handled.
protected  void SqlBuilder.processChange(Database currentModel, Database desiredModel, CreationParameters params, RemoveForeignKeyChange change)
          Processes the change representing the removal of a foreign key.
protected  void SqlBuilder.processChange(Database currentModel, Database desiredModel, CreationParameters params, RemoveIndexChange change)
          Processes the change representing the removal of an index.
protected  void SqlBuilder.processChange(Database currentModel, Database desiredModel, CreationParameters params, RemoveTableChange change)
          Processes the change representing the removal of a table.
protected  void SqlBuilder.processChanges(Database currentModel, Database desiredModel, java.util.List changes, CreationParameters params)
          Processes the changes.
protected  void SqlBuilder.processTableStructureChanges(Database currentModel, Database desiredModel, CreationParameters params, java.util.Collection changes)
          Processes the changes to the structure of tables.
 

Uses of CreationParameters in org.apache.ddlutils.platform.mssql
 

Methods in org.apache.ddlutils.platform.mssql with parameters of type CreationParameters
protected  void MSSqlBuilder.processChanges(Database currentModel, Database desiredModel, java.util.List changes, CreationParameters params)
          Processes the changes.
 

Uses of CreationParameters in org.apache.ddlutils.platform.sybase
 

Methods in org.apache.ddlutils.platform.sybase with parameters of type CreationParameters
protected  void SybaseBuilder.processChanges(Database currentModel, Database desiredModel, java.util.List changes, CreationParameters params)
          Processes the changes.
 

Uses of CreationParameters in org.apache.ddlutils.task
 

Methods in org.apache.ddlutils.task that return CreationParameters
protected  CreationParameters DatabaseCommandWithCreationParameters.getFilteredParameters(Database model, java.lang.String platformName, boolean isCaseSensitive)
          Filters the parameters for the given model and platform.
 



Copyright © 2005-2009 Apache Software Foundation. All Rights Reserved.