Uses of Interface
org.sql.generation.api.grammar.common.TableName

Packages that use TableName
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). 
org.sql.generation.api.grammar.query This package and its sub-package contain elements related to SQL queries (SELECT statements). 
 

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

Methods in org.sql.generation.api.grammar.builders.modification that return TableName
 TableName InsertStatementBuilder.getTableName()
          Returns the table name for this INSERT statement.
 

Methods in org.sql.generation.api.grammar.builders.modification with parameters of type TableName
 InsertStatementBuilder InsertStatementBuilder.setTableName(TableName tableName)
          Sets the table name for this INSERT statement.
 

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

Methods in org.sql.generation.api.grammar.factories that return TableName
 TableName TableReferenceFactory.tableName(String tableName)
           Creates a new table name, which isn't schema-qualified.
 TableName TableReferenceFactory.tableName(String schemaName, String tableName)
          Creates a new table name.
 

Methods in org.sql.generation.api.grammar.factories with parameters of type TableName
 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.
 TableReferenceByName TableReferenceFactory.table(TableName tableName)
           Creates a new table reference, which uses given table name, without table alias.
 TableReferenceByName TableReferenceFactory.table(TableName tableName, TableAlias alias)
          Creates a new table references, which uses given table name along with given table alias.
 

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

Methods in org.sql.generation.api.grammar.modification that return TableName
 TableName TargetTable.getTableName()
          Returns the table name of the target table.
 TableName InsertStatement.getTableName()
          Returns the table name where to insert.
 

Uses of TableName in org.sql.generation.api.grammar.query
 

Methods in org.sql.generation.api.grammar.query that return TableName
 TableName TableReferenceByName.getTableName()
          Returns the table name.
 



Copyright © 2010. All Rights Reserved.