|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use ObjectType | |
|---|---|
| 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. |
| Uses of ObjectType in org.sql.generation.api.grammar.factories |
|---|
| Methods in org.sql.generation.api.grammar.factories with parameters of type ObjectType | |
|---|---|
DropTableOrViewStatement |
ManipulationFactory.createDropTableOrViewStatement(TableNameDirect tableName,
ObjectType theType,
DropBehaviour dropBehaviour)
Creates the statement to drop table ( DROP TABLE ...) or view (DROP VIEW ...). |
| Uses of ObjectType in org.sql.generation.api.grammar.factories.pgsql |
|---|
| Methods in org.sql.generation.api.grammar.factories.pgsql with parameters of type ObjectType | |
|---|---|
PgSQLDropTableOrViewStatement |
PgSQLManipulationFactory.createDropTableOrViewStatement(TableNameDirect tableName,
ObjectType theType,
DropBehaviour dropBehaviour)
|
PgSQLDropTableOrViewStatement |
PgSQLManipulationFactory.createDropTableOrViewStatement(TableNameDirect tableName,
ObjectType theType,
DropBehaviour dropBehaviour,
Boolean useIfExists)
Creates DROP TABLE/VIEW statement, which may use IF EXISTS clause before the table name. |
| Uses of ObjectType in org.sql.generation.api.grammar.manipulation |
|---|
| Fields in org.sql.generation.api.grammar.manipulation declared as ObjectType | |
|---|---|
static ObjectType |
ObjectType.SCHEMA
The object type which means to DROP SCHEMA. |
static ObjectType |
ObjectType.TABLE
The object type which means to DROP TABLE. |
static ObjectType |
ObjectType.VIEW
The object type which means to DROP VIEW. |
| Methods in org.sql.generation.api.grammar.manipulation that return ObjectType | |
|---|---|
ObjectType |
DropStatement.whatToDrop()
Returns the object type to drop. |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||