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

Packages that use TableName
org.sql.generation.api.grammar.builders.definition This is package containing builders for syntax elements used in SQL Data Definition statements (typically CREATE statements). 
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.builders.query Package to hold builders for SQL queries (SELECT -statements). 
org.sql.generation.api.grammar.builders.query.pgsql This package contains builders specified to work with SQL syntax of the PostgreSQL database provider. 
org.sql.generation.api.grammar.definition.table This package contains syntax interfaces for CREATE TABLE statement. 
org.sql.generation.api.grammar.definition.view This package contains syntax interfaces required for CREATE VIEW statement. 
org.sql.generation.api.grammar.factories This package provides factories to create various builders and SQL syntax elements. 
org.sql.generation.api.grammar.factories.pgsql Package to contain PostgreSQL-specific factories enabling creating of PostgreSQL-specific syntax elements. 
org.sql.generation.api.grammar.manipulation This package provides syntax elements for DROP and ALTER statements. 
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.definition
 

Methods in org.sql.generation.api.grammar.builders.definition that return TableName
 TableName TableDefinitionBuilder.getTableName()
          Returns the name for this table.
 TableName ForeignKeyConstraintBuilder.getTableName()
          Returns the target table name for this foreign key constraint.
 TableName ViewDefinitionBuilder.getViewName()
          Returns the name of the view.
 

Methods in org.sql.generation.api.grammar.builders.definition with parameters of type TableName
 TableDefinitionBuilder TableDefinitionBuilder.setTableName(TableName tableName)
          Sets the name for this table.
 ForeignKeyConstraintBuilder ForeignKeyConstraintBuilder.setTargetTableName(TableName tableName)
          Sets the target table name for this foreign key constraint.
 ViewDefinitionBuilder ViewDefinitionBuilder.setViewName(TableName viewName)
          Sets the name for this view.
 

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.builders.query
 

Methods in org.sql.generation.api.grammar.builders.query with parameters of type TableName
 SimpleQueryBuilder SimpleQueryBuilder.from(TableName... tableNames)
          Adds table names for FROM clause of this query.
 

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

Methods in org.sql.generation.api.grammar.builders.query.pgsql with parameters of type TableName
 PgSQLSimpleQueryBuilder PgSQLSimpleQueryBuilder.from(TableName... tableNames)
           
 

Uses of TableName in org.sql.generation.api.grammar.definition.table
 

Methods in org.sql.generation.api.grammar.definition.table that return TableName
 TableName TableDefinition.getTableName()
          Returns the name for this table.
 TableName LikeClause.getTableName()
          Returns the name of the table for this LIKE clause.
 TableName ForeignKeyConstraint.getTargetTableName()
          Returns the name of the table where the columns in this table are referencing to.
 

Uses of TableName in org.sql.generation.api.grammar.definition.view
 

Methods in org.sql.generation.api.grammar.definition.view that return TableName
 TableName ViewDefinition.getViewName()
          Returns the name of this view.
 

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

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

Methods in org.sql.generation.api.grammar.factories with parameters of type TableName
 AlterTableStatement ManipulationFactory.createAlterTableStatement(TableName tableName, AlterTableAction action)
          Creates the ALTER TABLE statement with specified parameter.
 DropTableOrViewStatement ManipulationFactory.createDropTableOrViewStatement(TableName tableName, ObjectType theType, DropBehaviour dropBehaviour)
          Creates the statement to drop table (DROP TABLE ...) or view (DROP VIEW ...).
 LikeClause DefinitionFactory.createLikeClause(TableName tableName)
          Creates a new LIKE <table name> clause for CREATE TABLE statement.
 TargetTable ModificationFactory.createTargetTable(TableName tableName)
           Creates new target table to use in modification statements.
 TargetTable ModificationFactory.createTargetTable(TableName tableName, java.lang.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.factories.pgsql
 

Methods in org.sql.generation.api.grammar.factories.pgsql with parameters of type TableName
 PgSQLDropTableOrViewStatement PgSQLManipulationFactory.createDropTableOrViewStatement(TableName tableName, ObjectType theType, DropBehaviour dropBehaviour)
           
 PgSQLDropTableOrViewStatement PgSQLManipulationFactory.createDropTableOrViewStatement(TableName tableName, ObjectType theType, DropBehaviour dropBehaviour, java.lang.Boolean useIfExists)
          Creates DROP TABLE/VIEW statement, which may use IF EXISTS clause before the table name.
 

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

Methods in org.sql.generation.api.grammar.manipulation that return TableName
 TableName DropTableOrViewStatement.getTableName()
          Returns the name of the table or view to be deleted.
 TableName AlterTableStatement.getTableName()
          Returns the name of the table to be altered.
 

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.