Modifier and Type | Method and Description |
---|---|
SqlTableIdentity |
INSERT.getTable() |
SqlTableIdentity |
UPDATE.getTable() |
SqlTableIdentity |
DELETE.getTable() |
static SqlTableIdentity |
SQL.TABLE(String tablename)
TABLE.
|
static SqlTableIdentity |
SQL.TABLE(String tablename,
String alias)
TABLE.
|
static SqlTableIdentity |
SQL.TABLE(String schema,
String tablename,
String alias)
TABLE.
|
Modifier and Type | Method and Description |
---|---|
List<SqlTableIdentity> |
UPDATE.getClauseTables() |
List<SqlTableIdentity> |
DELETE.getClauseTables() |
List<SqlTableIdentity> |
SELECT.getClauseTables() |
Modifier and Type | Method and Description |
---|---|
DELETE |
DELETE.FROM(SqlTableIdentity table)
FROM.
|
INSERT |
INSERT.INTO(SqlTableIdentity table)
INTO.
|
protected void |
INSERT.SuperValueAssigningQuery.setTable(SqlTableIdentity table) |
protected void |
DELETE.SuperWritingQuery.setTable(SqlTableIdentity table) |
Constructor and Description |
---|
SuperValueAssigningQuery(SqlTableIdentity table) |
SuperValueAssigningQuery(SqlTableIdentity table) |
UPDATE(SqlTableIdentity table)
Instantiates a new UPDATE.
|
Modifier and Type | Method and Description |
---|---|
SqlTableIdentity |
DbmsRetrospectionAccessor.getSystemTable_COLUMNS()
Gets the system table_ columns.
|
SqlTableIdentity |
DbmsRetrospectionAccessor.getSystemTable_TABLES()
Gets the system table_ tables.
|
SqlTableIdentity[] |
DbmsRetrospectionAccessor.loadTables(String[] schemaInclusionPatterns,
String[] schemaExclusionPatterns,
String[] tableInclusionPatterns,
String[] tableExclusionPatterns,
String additionalWHERECondition)
Load tables.
|
SqlTableIdentity[] |
DbmsRetrospectionAccessor.Implementation.loadTables(String[] schemaInclusionPatterns,
String[] schemaExcluionPatterns,
String[] tableIncluionPatterns,
String[] tableExcluionPatterns,
String additionalWHERECondition) |
Modifier and Type | Method and Description |
---|---|
StringBuilder |
DbmsDMLAssembler.assembleTableIdentifier(SqlTableIdentity table,
StringBuilder sb,
int indentLevel,
int flags) |
String |
DbmsRetrospectionAccessor.createSelect_INFORMATION_SCHEMA_COLUMNS(SqlTableIdentity table)
Creates the select_ informatio n_ schem a_ columns.
|
String |
DbmsRetrospectionAccessor.createSelect_INFORMATION_SCHEMA_INDICES(SqlTableIdentity table)
Creates the select_ informatio n_ schem a_ indices.
|
String |
DbmsDDLMapper.getDataTypeDDLString(SQL.DATATYPE dataType,
SqlTableIdentity table)
Gets the data type ddl string.
|
String |
DbmsDDLMapper.getIndexTypeDDLString(SQL.INDEXTYPE indexType,
SqlTableIdentity table)
Gets the index type ddl string.
|
SqlField[] |
DbmsRetrospectionAccessor.loadColumns(SqlTableIdentity table)
Load columns.
|
SqlField[] |
DbmsRetrospectionAccessor.Implementation.loadColumns(SqlTableIdentity table) |
SqlIndex[] |
DbmsRetrospectionAccessor.loadIndices(SqlTableIdentity table)
Load indices.
|
String |
DbmsDDLMapper.lookupCustomDataTypeMapping(SQL.DATATYPE dataType,
SqlTableIdentity table)
Lookup custom data type mapping.
|
String |
DbmsDDLMapper.lookupDdbmsDataTypeMapping(SQL.DATATYPE dataType,
SqlTableIdentity table)
Lookup ddbms data type mapping.
|
Object |
DbmsAdaptor.updateSelectivity(SqlTableIdentity table)
Calls an appropriate database function to calculate and update the selectivity for all columns of
table , like MS SQL Server's "UPDATE STATISTICS" or InterSystems Cache's "%TuneTable()".The return value is whatever the DBMSAdaptor gets from the DB as an answer/result or whatever the DBMSAdaptor deems best. |
Modifier and Type | Field and Description |
---|---|
static SqlTableIdentity |
StandardRetrospectionAccessor.SYSTEMTABLE_COLUMNS
The Constant SYSTEMTABLE_COLUMNS.
|
static SqlTableIdentity |
StandardRetrospectionAccessor.SYSTEMTABLE_TABLES
The Constant SYSTEMTABLE_TABLES.
|
Modifier and Type | Method and Description |
---|---|
SqlTableIdentity |
StandardRetrospectionAccessor.getSystemTable_COLUMNS() |
SqlTableIdentity |
StandardRetrospectionAccessor.getSystemTable_TABLES() |
Modifier and Type | Method and Description |
---|---|
StringBuilder |
StandardDMLAssembler.assembleTableIdentifier(SqlTableIdentity table,
StringBuilder sb,
int indentLevel,
int flags) |
String |
StandardDDLMapper.getDataTypeDDLString(SQL.DATATYPE type,
SqlTableIdentity table) |
String |
StandardDDLMapper.getIndexTypeDDLString(SQL.INDEXTYPE indexType,
SqlTableIdentity table)
Gets the index type ddl string.
|
String |
StandardDDLMapper.lookupCustomDataTypeMapping(SQL.DATATYPE type,
SqlTableIdentity table) |
String |
StandardDDLMapper.lookupDdbmsDataTypeMapping(SQL.DATATYPE type,
SqlTableIdentity table) |
Object |
StandardDbmsAdaptor.updateSelectivity(SqlTableIdentity table) |
Modifier and Type | Method and Description |
---|---|
List<SqlTableIdentity> |
FROM.getClauseTables()
Gets the clause tables.
|
Modifier and Type | Method and Description |
---|---|
static SqlTableIdentity |
TableExpression.Utils.toSqlTableIdentity(TableExpression tableExpression)
Use with care, as this method swallows ClassCastExceptions.
|
Modifier and Type | Class and Description |
---|---|
class |
SqlDdlTable
The Class SqlDdlTable.
|
class |
SqlTable
The Class SqlTable.
|
class |
SqlTMPTable
Deprecated.
|
Modifier and Type | Field and Description |
---|---|
protected SqlTableIdentity |
SqlIndex.owner
The owner.
|
protected SqlTableIdentity |
SqlTrigger.table
The table.
|
Modifier and Type | Method and Description |
---|---|
SqlTableIdentity |
SqlTableIdentity.AS(String newAlias) |
SqlTableIdentity |
SqlIndex.getOwner()
Gets the owner.
|
SqlTableIdentity |
AliasedSqlTable.getSqltable()
Gets the sqltable.
|
SqlTableIdentity |
SqlTrigger.getTable()
Gets the table.
|
protected SqlTableIdentity |
SqlTableIdentity.getTopLevelInstance()
Gets the top level instance.
|
protected SqlTableIdentity |
SqlTableIdentity.Sql.this$() |
Modifier and Type | Method and Description |
---|---|
static SqlTrigger |
SqlTrigger.create(String name,
SqlTrigger.Time time,
SqlTrigger.Event event,
SqlTableIdentity table,
Object action,
String oldRowAlias,
String newRowAlias,
SqlCondition when)
Creates the.
|
void |
SqlIndex.setOwner(SqlTableIdentity owner)
Sets the owner.
|
void |
AliasedSqlTable.setSqltable(SqlTableIdentity sqltable)
Sets the sqltable.
|
protected void |
SqlTableIdentity.Sql.this$() |
Constructor and Description |
---|
AliasedSqlTable(SqlTableIdentity sqltable)
Instantiates a new aliased sql table.
|
SqlIndex(String name,
SqlTableIdentity owner,
SQL.INDEXTYPE type,
Object... columnList)
Instantiates a new sql index.
|
SqlPrimaryKey(String name,
SqlTableIdentity table,
Object... columnList)
Instantiates a new sql primary key.
|
SqlTrigger(String name,
SqlTrigger.Time time,
SqlTrigger.Event event,
SqlTableIdentity table,
Object action)
Instantiates a new sql trigger.
|
Modifier and Type | Method and Description |
---|---|
Class<? extends SqlTableIdentity> |
MappingGenerator.Configuration.getSuperClass()
Gets the super class.
|
Modifier and Type | Method and Description |
---|---|
TableDefinition |
TableRetrospection.createTableDefinition(SqlTableIdentity table)
Creates the table definition.
|
Modifier and Type | Method and Description |
---|---|
SqlTableIdentity |
WritingTableQuery.getTable() |
SqlTableIdentity |
WritingTableQuery.Implementation.getTable() |
Modifier and Type | Method and Description |
---|---|
List<SqlTableIdentity> |
ConditionalTableQuery.getClauseTables() |
List<SqlTableIdentity> |
ConditionalTableQuery.Implementation.getClauseTables()
Returns all proper tables (no sub-SELECTs) used in FROM and JOIN clauses.
If no FROM clause has been set yet, null is returned. |
Modifier and Type | Method and Description |
---|---|
protected void |
WritingTableQuery.Implementation.setTable(SqlTableIdentity table) |
Constructor and Description |
---|
Implementation(SqlTableIdentity table) |
Implementation(SqlTableIdentity table) |
Implementation(SqlTableIdentity table,
AssignmentList assignments) |
Copyright © 2003–2022 XDEV Software. All rights reserved.