| Package | Description |
|---|---|
| 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). |
| Class and Description |
|---|
| ColumnSource
This is common interface for syntax elements representing the data source for columns in
INSERT INTO
statement. |
| SetClause
This syntax element represents a single
SET element of UPDATE statement. |
| TargetTable
This syntax element represents the target table of
DELETE FROM and UPDATE statements. |
| Class and Description |
|---|
| ColumnSourceByQuery
This syntax element represents column source acquired by some query, for
INSERT INTO statement. |
| SetClause
This syntax element represents a single
SET element of UPDATE statement. |
| TargetTable
This syntax element represents the target table of
DELETE FROM and UPDATE statements. |
| UpdateSource
This syntax element represents the data source for column in
SET clause of UPDATE statement. |
| UpdateSourceByExpression
This syntax element represents the update source having value of whatever expression it holds.
|
| Class and Description |
|---|
| ColumnSource
This is common interface for syntax elements representing the data source for columns in
INSERT INTO
statement. |
| ColumnSource.Defaults
This syntax element represents when default values of columns are wanted to be inserted into table.
|
| DeleteStatement
A common interface for all statements deleting data from tables.
|
| DynamicColumnSource
A common interface for column sources with named columns for
INSERT INTO statement. |
| SetClause
This syntax element represents a single
SET element of UPDATE statement. |
| TargetTable
This syntax element represents the target table of
DELETE FROM and UPDATE statements. |
| UpdateSource
This syntax element represents the data source for column in
SET clause of UPDATE statement. |
| UpdateSource.Default
This syntax element represents the
DEFAULT keyword as data source for column, meaning to use the default
value for the column. |
| UpdateSource.Null
This syntax element represents the
NULL keyword as data source for column, meaning to use the
NULL value for the column. |
| UpdateStatement
This is common interface for all statements doing updates.
|
Copyright © 2010-2012. All Rights Reserved.