Uses of Interface
org.sql.generation.api.grammar.modification.TargetTable

Packages that use TargetTable
org.sql.generation.api.grammar.builders.modification Package to hold builders common for SQL modification clauses (INSERT, UPDATE, and DELETE). 
org.sql.generation.api.grammar.factories This package provides factories to create various builders and SQL syntax elements. 
org.sql.generation.api.grammar.modification This package contains syntax elements relevant to SQL modification clauses (INSERT INTO, DELETE FROM, and UPDATE). 
 

Uses of TargetTable in org.sql.generation.api.grammar.builders.modification
 

Methods in org.sql.generation.api.grammar.builders.modification that return TargetTable
 TargetTable DeleteBySearchBuilder.getTargetTable()
          Retrieves the target table for this DELETE statement.
 

Methods in org.sql.generation.api.grammar.builders.modification with parameters of type TargetTable
 UpdateBySearchBuilder UpdateBySearchBuilder.setTargetTable(TargetTable table)
          Sets the target table for this UPDATE statement.
 DeleteBySearchBuilder DeleteBySearchBuilder.setTargetTable(TargetTable table)
          Sets the target table for this DELETE statement.
 

Uses of TargetTable in org.sql.generation.api.grammar.factories
 

Methods in org.sql.generation.api.grammar.factories that return TargetTable
 TargetTable ModificationFactory.createTargetTable(TableName tableName)
           Creates new target table to use in modification statements.
 TargetTable ModificationFactory.createTargetTable(TableName tableName, Boolean isOnly)
          Creates new target table to use in modification statements.
 

Uses of TargetTable in org.sql.generation.api.grammar.modification
 

Methods in org.sql.generation.api.grammar.modification that return TargetTable
 TargetTable UpdateBySearch.getTargetTable()
          Returns the target table of this UPDATE statement.
 TargetTable DeleteBySearch.getTargetTable()
          Returns the target table for this DELETE FROM statement.
 



Copyright © 2010-2011. All Rights Reserved.