| Package | Description |
|---|---|
| org.sql.generation.api.grammar.builders.query |
Package to hold builders for SQL queries (
SELECT -statements). |
| org.sql.generation.api.grammar.common |
This package contains interfaces and classes common for most parts of SQL generator.
|
| org.sql.generation.api.grammar.factories |
This package provides factories to create various builders and SQL syntax elements.
|
| org.sql.generation.api.grammar.query |
This package and its sub-package contain elements related to SQL queries (
SELECT statements). |
| Modifier and Type | Method and Description |
|---|---|
SimpleQueryBuilder |
SimpleQueryBuilder.from(TableName... tableNames)
Adds table names for
FROM clause of this query. |
| Modifier and Type | Interface and Description |
|---|---|
interface |
TableNameDirect
A direct table name may be just table name, or schema-qualified table name.
|
interface |
TableNameFunction
A table name function serves as a function call when selecting data.
|
| Modifier and Type | Method and Description |
|---|---|
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.
|
| Modifier and Type | Method and Description |
|---|---|
TableName |
TableReferenceByName.getTableName()
Returns the table name.
|
Copyright © 2010-2012. All Rights Reserved.