Uses of Class
net.java.ao.schema.ddl.SQLAction

Packages that use SQLAction
net.java.ao   
net.java.ao.db   
net.java.ao.schema.ddl   
 

Uses of SQLAction in net.java.ao
 

Methods in net.java.ao that return SQLAction
protected  SQLAction DatabaseProvider.renderAlterTableAddColumnStatement(NameConverters nameConverters, DDLTable table, DDLField field)
          Generates the database-specific DDL statement for adding a column, but not including any corresponding sequences, triggers, etc.
protected  SQLAction DatabaseProvider.renderAlterTableAddKey(DDLForeignKey key)
          Generates the database-specific DDL statement required to add a foreign key to a table.
protected  SQLAction DatabaseProvider.renderAlterTableChangeColumnStatement(NameConverters nameConverters, DDLTable table, DDLField oldField, DDLField field, DatabaseProvider.RenderFieldOptions options)
          Generates the database-specific DDL statement only for altering a table and changing a column.
protected  SQLAction DatabaseProvider.renderAlterTableDropColumnStatement(DDLTable table, DDLField field)
           
protected  SQLAction DatabaseProvider.renderAlterTableDropKey(DDLForeignKey key)
          Generates the database-specific DDL statement required to remove a foreign key from a table.
protected  SQLAction DatabaseProvider.renderCreateIndex(IndexNameConverter indexNameConverter, DDLIndex index)
          Generates the database-specific DDL statement required to create a new index.
protected  SQLAction DatabaseProvider.renderDropFunctionForField(NameConverters nameConverters, DDLTable table, DDLField field)
          Renders SQL statement(s) to drop the function which corresponds to the specified field, if applicable, or null otherwise.
protected  SQLAction DatabaseProvider.renderDropIndex(IndexNameConverter indexNameConverter, DDLIndex index)
          Generates the database-specific DDL statement required to drop an index.
protected  SQLAction DatabaseProvider.renderDropSequenceForField(NameConverters nameConverters, DDLTable table, DDLField field)
          Renders SQL statement(s) to drop the sequence which corresponds to the specified field, or null if none.
protected  SQLAction DatabaseProvider.renderDropTableStatement(DDLTable table)
          Generates the appropriate database-specific DDL statement to drop the specified table representation.
protected  SQLAction DatabaseProvider.renderDropTriggerForField(NameConverters nameConverters, DDLTable table, DDLField field)
          Renders SQL statement(s) to drop the trigger which corresponds to the specified field, or null if none.
protected  SQLAction DatabaseProvider.renderFunctionForField(NameConverters nameConverters, DDLTable table, DDLField field)
          Renders the function which corresponds to the specified field, or null if none.
protected  SQLAction DatabaseProvider.renderInsert(DDLTable ddlTable, DDLValue[] ddlValues)
           
protected  SQLAction DatabaseProvider.renderSequenceForField(NameConverters nameConverters, DDLTable table, DDLField field)
          Renders the SQL for creating a sequence for the specified field, or null if none.
protected  SQLAction DatabaseProvider.renderTable(NameConverters nameConverters, DDLTable table)
          Renders the specified table representation into the corresponding database-specific DDL statement.
protected  SQLAction DatabaseProvider.renderTriggerForField(NameConverters nameConverters, DDLTable table, DDLField field)
          Renders the trigger which corresponds to the specified field, or null if none.
 

Methods in net.java.ao that return types with arguments of type SQLAction
protected  Iterable<SQLAction> DatabaseProvider.dropFunctions(NameConverters nameConverters, DDLTable table)
          Generates the database-specific DDL statements required to drop all of the functions necessary for the given table.
 Iterable<SQLAction> DatabaseProvider.renderAction(NameConverters nameConverters, DDLAction action)
          Top level delegating method for the process of rendering a database-agnostic DDLAction into the database-specific SQL actions.
protected  Iterable<SQLAction> DatabaseProvider.renderAlterTableAddColumn(NameConverters nameConverters, DDLTable table, DDLField field)
          Generates the database-specific DDL statements required to add a column to an existing table.
protected  Iterable<SQLAction> DatabaseProvider.renderAlterTableChangeColumn(NameConverters nameConverters, DDLTable table, DDLField oldField, DDLField field)
          Generates the database-specific DDL statements required to change the given column from its old specification to the given DDL value.
protected  Iterable<SQLAction> DatabaseProvider.renderAlterTableDropColumn(NameConverters nameConverters, DDLTable table, DDLField field)
          Generates the database-specific DDL statements required to remove the specified column from the given table.
protected  Iterable<SQLAction> DatabaseProvider.renderDropFunctions(NameConverters nameConverters, DDLTable table)
          Generates the database-specific DDL statements required to drop all associated functions for the given table representation.
protected  Iterable<SQLAction> DatabaseProvider.renderDropSequences(NameConverters nameConverters, DDLTable table)
          Generates the database-specific DDL statements required to drop all associated sequences for the given table representation.
protected  Iterable<SQLAction> DatabaseProvider.renderDropTriggers(NameConverters nameConverters, DDLTable table)
          Generates the database-specific DDL statements required to drop all associated triggers for the given table representation.
protected  Iterable<SQLAction> DatabaseProvider.renderFields(DDLTable table, com.google.common.base.Predicate<DDLField> filter, com.google.common.base.Function<DDLField,SQLAction> render)
           
protected  Iterable<SQLAction> DatabaseProvider.renderFunctions(NameConverters nameConverters, DDLTable table)
          Generates the database-specific DDL statements required to create all of the functions necessary for the given table.
protected  Iterable<SQLAction> DatabaseProvider.renderSequences(NameConverters nameConverters, DDLTable table)
          Generates the database-specific DDL statements required to create all of the sequences necessary for the given table.
protected  Iterable<SQLAction> DatabaseProvider.renderTriggers(NameConverters nameConverters, DDLTable table)
          Generates the database-specific DDL statements required to create all of the triggers necessary for the given table.
 

Methods in net.java.ao with parameters of type SQLAction
 Iterable<String> DatabaseProvider.executeUpdateForAction(Statement stmt, SQLAction action, Set<String> completedStatements)
           
 

Method parameters in net.java.ao with type arguments of type SQLAction
 Iterable<String> DatabaseProvider.executeUpdatesForActions(Statement stmt, Iterable<SQLAction> actions, Set<String> completedStatements)
          Attempt to execute a list of actions that make up a logical unit (e.g.
protected  Iterable<SQLAction> DatabaseProvider.renderFields(DDLTable table, com.google.common.base.Predicate<DDLField> filter, com.google.common.base.Function<DDLField,SQLAction> render)
           
 

Uses of SQLAction in net.java.ao.db
 

Methods in net.java.ao.db that return SQLAction
protected  SQLAction SQLServerDatabaseProvider.renderAlterTableAddColumnStatement(NameConverters nameConverters, DDLTable table, DDLField field)
           
protected  SQLAction OracleDatabaseProvider.renderAlterTableAddColumnStatement(NameConverters nameConverters, DDLTable table, DDLField field)
           
protected  SQLAction SQLServerDatabaseProvider.renderAlterTableChangeColumnStatement(NameConverters nameConverters, DDLTable table, DDLField oldField, DDLField field, DatabaseProvider.RenderFieldOptions options)
           
protected  SQLAction HSQLDatabaseProvider.renderAlterTableChangeColumnStatement(NameConverters nameConverters, DDLTable table, DDLField oldField, DDLField field, DatabaseProvider.RenderFieldOptions options)
           
protected  SQLAction SQLServerDatabaseProvider.renderAlterTableDropKey(DDLForeignKey key)
           
protected  SQLAction PostgreSQLDatabaseProvider.renderAlterTableDropKey(DDLForeignKey key)
           
protected  SQLAction OracleDatabaseProvider.renderAlterTableDropKey(DDLForeignKey key)
           
protected  SQLAction HSQLDatabaseProvider.renderAlterTableDropKey(DDLForeignKey key)
           
protected  SQLAction SQLServerDatabaseProvider.renderCreateIndex(IndexNameConverter indexNameConverter, DDLIndex index)
           
protected  SQLAction PostgreSQLDatabaseProvider.renderCreateIndex(IndexNameConverter indexNameConverter, DDLIndex index)
           
protected  SQLAction MySQLDatabaseProvider.renderCreateIndex(IndexNameConverter indexNameConverter, DDLIndex index)
           
protected  SQLAction PostgreSQLDatabaseProvider.renderDropFunctionForField(NameConverters nameConverters, DDLTable table, DDLField field)
           
protected  SQLAction SQLServerDatabaseProvider.renderDropIndex(IndexNameConverter indexNameConverter, DDLIndex index)
           
protected  SQLAction PostgreSQLDatabaseProvider.renderDropIndex(IndexNameConverter indexNameConverter, DDLIndex index)
           
protected  SQLAction OracleDatabaseProvider.renderDropIndex(IndexNameConverter indexNameConverter, DDLIndex index)
           
protected  SQLAction HSQLDatabaseProvider.renderDropIndex(IndexNameConverter indexNameConverter, DDLIndex index)
           
protected  SQLAction OracleDatabaseProvider.renderDropSequenceForField(NameConverters nameConverters, DDLTable table, DDLField field)
           
protected  SQLAction OracleDatabaseProvider.renderDropTableStatement(DDLTable table)
           
protected  SQLAction OracleDatabaseProvider.renderDropTriggerForField(NameConverters nameConverters, DDLTable table, DDLField field)
           
protected  SQLAction OracleDatabaseProvider.renderSequenceForField(NameConverters nameConverters, DDLTable table, DDLField field)
           
protected  SQLAction OracleDatabaseProvider.renderTriggerForField(NameConverters nameConverters, DDLTable table, DDLField field)
           
 

Methods in net.java.ao.db that return types with arguments of type SQLAction
protected  Iterable<SQLAction> MySQLDatabaseProvider.renderAlterTableAddColumn(NameConverters nameConverters, DDLTable table, DDLField field)
           
protected  Iterable<SQLAction> HSQLDatabaseProvider.renderAlterTableAddColumn(NameConverters nameConverters, DDLTable table, DDLField field)
           
protected  Iterable<SQLAction> SQLServerDatabaseProvider.renderAlterTableChangeColumn(NameConverters nameConverters, DDLTable table, DDLField oldField, DDLField field)
           
protected  Iterable<SQLAction> PostgreSQLDatabaseProvider.renderAlterTableChangeColumn(NameConverters nameConverters, DDLTable table, DDLField oldField, DDLField field)
           
protected  Iterable<SQLAction> OracleDatabaseProvider.renderAlterTableChangeColumn(NameConverters nameConverters, DDLTable table, DDLField oldField, DDLField field)
           
protected  Iterable<SQLAction> MySQLDatabaseProvider.renderAlterTableChangeColumn(NameConverters nameConverters, DDLTable table, DDLField oldField, DDLField field)
           
protected  Iterable<SQLAction> HSQLDatabaseProvider.renderAlterTableChangeColumn(NameConverters nameConverters, DDLTable table, DDLField oldField, DDLField field)
           
 

Uses of SQLAction in net.java.ao.schema.ddl
 

Methods in net.java.ao.schema.ddl that return SQLAction
 SQLAction SQLAction.getUndoAction()
           
static SQLAction SQLAction.of(CharSequence statement)
           
 SQLAction SQLAction.withUndoAction(SQLAction undoAction)
           
 

Methods in net.java.ao.schema.ddl with parameters of type SQLAction
 SQLAction SQLAction.withUndoAction(SQLAction undoAction)
           
 



Copyright © 2007-2011. All Rights Reserved.