|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use SQLStatement | |
|---|---|
| org.sql.generation.api.grammar.common | This package contains interfaces and classes common for most parts of SQL generator. |
| org.sql.generation.api.grammar.definition.schema | This package contains syntax interfaces for CREATE SCHEMA statement. |
| 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.manipulation | This package provides syntax elements for DROP and ALTER statements. |
| org.sql.generation.api.grammar.manipulation.pgsql | This is package for syntax elements specific for data manipulation for PostgreSQL databases. |
| 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). |
| org.sql.generation.api.vendor | This package provides an API for SQLVendors to implement, and a way to load different vendors dynamically. |
| Uses of SQLStatement in org.sql.generation.api.grammar.common |
|---|
| Subinterfaces of SQLStatement in org.sql.generation.api.grammar.common | |
|---|---|
interface |
SchemaDefinitionStatement
This is a common interface for all definition ( CREATE) clauses. |
interface |
SchemaManipulationStatement
|
interface |
SchemaStatement
|
| Uses of SQLStatement in org.sql.generation.api.grammar.definition.schema |
|---|
| Subinterfaces of SQLStatement in org.sql.generation.api.grammar.definition.schema | |
|---|---|
interface |
SchemaDefinition
This syntax element represents the CREATE SCHEMA statement. |
| Uses of SQLStatement in org.sql.generation.api.grammar.definition.table |
|---|
| Subinterfaces of SQLStatement in org.sql.generation.api.grammar.definition.table | |
|---|---|
interface |
TableDefinition
This syntax element represents the table definition ( CREATE TABLE ) statement. |
| Uses of SQLStatement in org.sql.generation.api.grammar.definition.view |
|---|
| Subinterfaces of SQLStatement in org.sql.generation.api.grammar.definition.view | |
|---|---|
interface |
ViewDefinition
This syntax element represents the CREATE VIEW statement. |
| Uses of SQLStatement in org.sql.generation.api.grammar.manipulation |
|---|
| Subinterfaces of SQLStatement in org.sql.generation.api.grammar.manipulation | |
|---|---|
interface |
AlterStatement
This is a common interface for all ALTER statements. |
interface |
AlterTableStatement
|
interface |
DropSchemaStatement
This syntax element represents the DROP SCHEMA statement. |
interface |
DropStatement
This is a common interface for DROP statements. |
interface |
DropTableOrViewStatement
This is generalized statement to drop tables and views. |
| Uses of SQLStatement in org.sql.generation.api.grammar.manipulation.pgsql |
|---|
| Subinterfaces of SQLStatement in org.sql.generation.api.grammar.manipulation.pgsql | |
|---|---|
interface |
PgSQLDropTableOrViewStatement
|
| Uses of SQLStatement in org.sql.generation.api.grammar.modification |
|---|
| Subinterfaces of SQLStatement in org.sql.generation.api.grammar.modification | |
|---|---|
interface |
DeleteBySearch
This syntax element represents a DELETE FROM statement. |
interface |
DeleteStatement
A common interface for all statements deleting data from tables. |
interface |
InsertStatement
This syntax element represents a INSERT INTO statement. |
interface |
UpdateBySearch
This syntax element represents UPDATE statement. |
interface |
UpdateStatement
This is common interface for all statements doing updates. |
| Uses of SQLStatement in org.sql.generation.api.grammar.query |
|---|
| Subinterfaces of SQLStatement in org.sql.generation.api.grammar.query | |
|---|---|
interface |
QueryExpression
This syntax element represents the QueryExpressionBody and, in future, the WithClause (WITH) to be
used with query. |
| Uses of SQLStatement in org.sql.generation.api.vendor |
|---|
| Methods in org.sql.generation.api.vendor with parameters of type SQLStatement | |
|---|---|
java.lang.String |
SQLVendor.toString(SQLStatement statement)
Takes the SQLStatement (typically either a query, or a modification statement) and produces a textual SQL
statement out of it. |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||