public class SystemColumns extends TableImpl<Record>
| Modifier and Type | Field and Description |
|---|---|
TableField<Record,Integer> |
BUFFER_LENGTH
The column
INFORMATION_SCHEMA.SYSTEM_COLUMNS.BUFFER_LENGTH. |
TableField<Record,Integer> |
CHAR_OCTET_LENGTH
The column
INFORMATION_SCHEMA.SYSTEM_COLUMNS.CHAR_OCTET_LENGTH. for char types, the maximum number of bytes in the column, if the value can be represented as an INTEGER column value, else NULL |
TableField<Record,String> |
COLUMN_DEF
The column
INFORMATION_SCHEMA.SYSTEM_COLUMNS.COLUMN_DEF. default value (may be NULL) |
TableField<Record,String> |
COLUMN_NAME
The column
INFORMATION_SCHEMA.SYSTEM_COLUMNS.COLUMN_NAME. simple name of the column |
TableField<Record,Integer> |
COLUMN_SIZE
The column
INFORMATION_SCHEMA.SYSTEM_COLUMNS.COLUMN_SIZE. precision for number types; length for sized types; NULL if not applicable |
TableField<Record,Short> |
DATA_TYPE
The column
INFORMATION_SCHEMA.SYSTEM_COLUMNS.DATA_TYPE. |
TableField<Record,Integer> |
DECIMAL_DIGITS
The column
INFORMATION_SCHEMA.SYSTEM_COLUMNS.DECIMAL_DIGITS. # of fractional digits (scale) for number types |
TableField<Record,String> |
IS_AUTOINCREMENT
The column
INFORMATION_SCHEMA.SYSTEM_COLUMNS.IS_AUTOINCREMENT. |
TableField<Record,String> |
IS_GENERATEDCOLUMN
The column
INFORMATION_SCHEMA.SYSTEM_COLUMNS.IS_GENERATEDCOLUMN. |
TableField<Record,String> |
IS_NULLABLE
The column
INFORMATION_SCHEMA.SYSTEM_COLUMNS.IS_NULLABLE. is column nullable? |
TableField<Record,Integer> |
NULLABLE
The column
INFORMATION_SCHEMA.SYSTEM_COLUMNS.NULLABLE. is NULL allowed? |
TableField<Record,Integer> |
NUM_PREC_RADIX
The column
INFORMATION_SCHEMA.SYSTEM_COLUMNS.NUM_PREC_RADIX. |
TableField<Record,Integer> |
ORDINAL_POSITION
The column
INFORMATION_SCHEMA.SYSTEM_COLUMNS.ORDINAL_POSITION. index of column in table (starting at 1) |
TableField<Record,String> |
REMARKS
The column
INFORMATION_SCHEMA.SYSTEM_COLUMNS.REMARKS. explanitory comment describing the column (may be NULL) |
TableField<Record,String> |
SCOPE_CATALOG
The column
INFORMATION_SCHEMA.SYSTEM_COLUMNS.SCOPE_CATALOG. |
TableField<Record,String> |
SCOPE_SCHEMA
The column
INFORMATION_SCHEMA.SYSTEM_COLUMNS.SCOPE_SCHEMA. schema of table that is the scope of a reference attribute (NULL if the DATA_TYPE isn't REF) |
TableField<Record,String> |
SCOPE_TABLE
The column
INFORMATION_SCHEMA.SYSTEM_COLUMNS.SCOPE_TABLE. table name that this the scope of a reference attribute (NULL if the DATA_TYPE isn't REF) |
TableField<Record,Short> |
SOURCE_DATA_TYPE
The column
INFORMATION_SCHEMA.SYSTEM_COLUMNS.SOURCE_DATA_TYPE. source type of a distinct type or user-generated Ref type, SQL type from DITypes (NULL if DATA_TYPE isn't DISTINCT or user-generated REF) |
TableField<Record,Integer> |
SQL_DATA_TYPE
The column
INFORMATION_SCHEMA.SYSTEM_COLUMNS.SQL_DATA_TYPE. |
TableField<Record,Integer> |
SQL_DATETIME_SUB
The column
INFORMATION_SCHEMA.SYSTEM_COLUMNS.SQL_DATETIME_SUB. |
static SystemColumns |
SYSTEM_COLUMNS
The reference instance of
INFORMATION_SCHEMA.SYSTEM_COLUMNS |
TableField<Record,String> |
TABLE_CAT
The column
INFORMATION_SCHEMA.SYSTEM_COLUMNS.TABLE_CAT. catalog in which the table containing the column is defined |
TableField<Record,String> |
TABLE_NAME
The column
INFORMATION_SCHEMA.SYSTEM_COLUMNS.TABLE_NAME. simple name of the table containing the column |
TableField<Record,String> |
TABLE_SCHEM
The column
INFORMATION_SCHEMA.SYSTEM_COLUMNS.TABLE_SCHEM. schema in which the table containing the column is defined |
TableField<Record,String> |
TYPE_NAME
The column
INFORMATION_SCHEMA.SYSTEM_COLUMNS.TYPE_NAME. the HSQLDB-specific data type name; this is the canonical name used in CREATE TABLE and ALTER TABLE statements. |
parameters| Constructor and Description |
|---|
SystemColumns()
Create a
INFORMATION_SCHEMA.SYSTEM_COLUMNS table reference |
SystemColumns(Name alias)
Create an aliased
INFORMATION_SCHEMA.SYSTEM_COLUMNS table reference |
SystemColumns(String alias)
Create an aliased
INFORMATION_SCHEMA.SYSTEM_COLUMNS table reference |
SystemColumns(Table<O> child,
ForeignKey<O,Record> key) |
accept, aliased, as, clauses, declaresTables, equals, fieldsRowclone, finalize, getClass, notify, notifyAll, wait, wait, waitgetComment, getCommentPart, getName, getUnqualifiedNamepublic static final SystemColumns SYSTEM_COLUMNS
INFORMATION_SCHEMA.SYSTEM_COLUMNSpublic final TableField<Record,String> TABLE_CAT
INFORMATION_SCHEMA.SYSTEM_COLUMNS.TABLE_CAT. catalog in which the table containing the column is definedpublic final TableField<Record,String> TABLE_SCHEM
INFORMATION_SCHEMA.SYSTEM_COLUMNS.TABLE_SCHEM. schema in which the table containing the column is definedpublic final TableField<Record,String> TABLE_NAME
INFORMATION_SCHEMA.SYSTEM_COLUMNS.TABLE_NAME. simple name of the table containing the columnpublic final TableField<Record,String> COLUMN_NAME
INFORMATION_SCHEMA.SYSTEM_COLUMNS.COLUMN_NAME. simple name of the columnpublic final TableField<Record,Short> DATA_TYPE
INFORMATION_SCHEMA.SYSTEM_COLUMNS.DATA_TYPE. SQL data type. This may be a java.sql.Types data type, a SQL 200n data type or an HSQLDB-specific data type. For datetime or interval data types, this column returns the concise data type (such as SQL_ÂTYPE_ÂTIME or SQL_ÂINTERVAL_ÂYEAR_ÂTO_ÂMONTH).public final TableField<Record,String> TYPE_NAME
INFORMATION_SCHEMA.SYSTEM_COLUMNS.TYPE_NAME. the HSQLDB-specific data type name; this is the canonical name used in CREATE TABLE and ALTER TABLE statements.public final TableField<Record,Integer> COLUMN_SIZE
INFORMATION_SCHEMA.SYSTEM_COLUMNS.COLUMN_SIZE. precision for number types; length for sized types; NULL if not applicablepublic final TableField<Record,Integer> BUFFER_LENGTH
INFORMATION_SCHEMA.SYSTEM_COLUMNS.BUFFER_LENGTH. The maximum length in bytes of data, if definitely known, that would be transferred to a buffer on a fetch operation. For numeric data, this size may be different than the size of the data stored on the data source. This value is the same as the COLUMN_SIZE column for binary data. This value is the twice the COLUMN_SIZE column for character data. If the actual value is larger than can be represented in an INTEGER column value, this is NULL.public final TableField<Record,Integer> DECIMAL_DIGITS
INFORMATION_SCHEMA.SYSTEM_COLUMNS.DECIMAL_DIGITS. # of fractional digits (scale) for number typespublic final TableField<Record,Integer> NUM_PREC_RADIX
INFORMATION_SCHEMA.SYSTEM_COLUMNS.NUM_PREC_RADIX. Radix of reported numeric precision (i.e. base of number types)public final TableField<Record,Integer> NULLABLE
INFORMATION_SCHEMA.SYSTEM_COLUMNS.NULLABLE. is NULL allowed?: { columnNoNulls (maybe not), columnNullable (definitely), columnNullableUnknown }public final TableField<Record,String> REMARKS
INFORMATION_SCHEMA.SYSTEM_COLUMNS.REMARKS. explanitory comment describing the column (may be NULL)public final TableField<Record,String> COLUMN_DEF
INFORMATION_SCHEMA.SYSTEM_COLUMNS.COLUMN_DEF. default value (may be NULL)public final TableField<Record,Integer> SQL_DATA_TYPE
INFORMATION_SCHEMA.SYSTEM_COLUMNS.SQL_DATA_TYPE. The value of the SQL data type as it would appear in the SQL CLI SQL_DESC_TYPE field of the SQLDA.public final TableField<Record,Integer> SQL_DATETIME_SUB
INFORMATION_SCHEMA.SYSTEM_COLUMNS.SQL_DATETIME_SUB. When the value of SQL_DATA_TYPE is SQL_DATETIME or SQL_INTERVAL, this column contains the datetime/interval subcode. For data types other than datetime and interval, this column is NULL.public final TableField<Record,Integer> CHAR_OCTET_LENGTH
INFORMATION_SCHEMA.SYSTEM_COLUMNS.CHAR_OCTET_LENGTH. for char types, the maximum number of bytes in the column, if the value can be represented as an INTEGER column value, else NULLpublic final TableField<Record,Integer> ORDINAL_POSITION
INFORMATION_SCHEMA.SYSTEM_COLUMNS.ORDINAL_POSITION. index of column in table (starting at 1)public final TableField<Record,String> IS_NULLABLE
INFORMATION_SCHEMA.SYSTEM_COLUMNS.IS_NULLABLE. is column nullable?: { YES (might allow) | NO (definitely not) | '' (unknown) }public final TableField<Record,String> SCOPE_CATALOG
INFORMATION_SCHEMA.SYSTEM_COLUMNS.SCOPE_CATALOG.public final TableField<Record,String> SCOPE_SCHEMA
INFORMATION_SCHEMA.SYSTEM_COLUMNS.SCOPE_SCHEMA. schema of table that is the scope of a reference attribute (NULL if the DATA_TYPE isn't REF)public final TableField<Record,String> SCOPE_TABLE
INFORMATION_SCHEMA.SYSTEM_COLUMNS.SCOPE_TABLE. table name that this the scope of a reference attribute (NULL if the DATA_TYPE isn't REF)public final TableField<Record,Short> SOURCE_DATA_TYPE
INFORMATION_SCHEMA.SYSTEM_COLUMNS.SOURCE_DATA_TYPE. source type of a distinct type or user-generated Ref type, SQL type from DITypes (NULL if DATA_TYPE isn't DISTINCT or user-generated REF)public final TableField<Record,String> IS_AUTOINCREMENT
INFORMATION_SCHEMA.SYSTEM_COLUMNS.IS_AUTOINCREMENT.public final TableField<Record,String> IS_GENERATEDCOLUMN
INFORMATION_SCHEMA.SYSTEM_COLUMNS.IS_GENERATEDCOLUMN.public SystemColumns(String alias)
INFORMATION_SCHEMA.SYSTEM_COLUMNS table referencepublic SystemColumns(Name alias)
INFORMATION_SCHEMA.SYSTEM_COLUMNS table referencepublic SystemColumns()
INFORMATION_SCHEMA.SYSTEM_COLUMNS table referencepublic SystemColumns(Table<O> child, ForeignKey<O,Record> key)
public Class<Record> getRecordType()
getRecordType in interface Table<Record>getRecordType in class TableImpl<Record>public Schema getSchema()
public SystemColumns as(String alias)
public SystemColumns as(Name alias)
public SystemColumns rename(String name)
public SystemColumns rename(Name name)
public final QualifiedAsterisk asterisk()
public final DataType<R> getDataType()
getDataType in interface Table<R extends Record>public final RecordType<R> recordType()
recordType in interface Table<R extends Record>public final Stream<Field<?>> fieldStream()
fieldStream in interface TableLike<R extends Record>public final Field<?> field(int arg0)
public final Field<?>[] fields()
public final Field<?>[] fields(int... arg0)
public final int indexOf(Field<?> arg0)
public final int indexOf(String arg0)
public final int indexOf(Name arg0)
public final Table<R> asTable(String arg0, Function<? super Field<?>,? extends String> arg1)
public final Table<R> asTable(String arg0, BiFunction<? super Field<?>,? super Integer,? extends String> arg1)
public final Table<R> as(String arg0, BiFunction<? super Field<?>,? super Integer,? extends String> arg1)
public final Table<R> as(Name arg0, BiFunction<? super Field<?>,? super Integer,? extends Name> arg1)
public final TableOptions.TableType getType()
public final TableOptions getOptions()
getOptions in interface Table<R extends Record>public final Catalog getCatalog()
getCatalog in interface Qualifiedpublic final <O extends Record> List<ForeignKey<O,R>> getReferencesFrom(Table<O> arg0)
getReferencesFrom in interface Table<R extends Record>public final <O extends Record> List<ForeignKey<R,O>> getReferencesTo(Table<O> arg0)
getReferencesTo in interface Table<R extends Record>@Deprecated protected static final <R extends Record,T> TableField<R,T> createField(String arg0, DataType<T> arg1, Table<R> arg2)
@Deprecated protected static final <R extends Record,T> TableField<R,T> createField(String arg0, DataType<T> arg1, Table<R> arg2, String arg3)
@Deprecated protected static final <R extends Record,T,U> TableField<R,U> createField(String arg0, DataType<T> arg1, Table<R> arg2, String arg3, Converter<T,U> arg4)
@Deprecated protected static final <R extends Record,T,U> TableField<R,U> createField(String arg0, DataType<T> arg1, Table<R> arg2, String arg3, Binding<T,U> arg4)
@Deprecated protected static final <R extends Record,T,X,U> TableField<R,U> createField(String arg0, DataType<T> arg1, Table<R> arg2, String arg3, Converter<X,U> arg4, Binding<T,X> arg5)
@Deprecated protected final <T> TableField<R,T> createField(String arg0, DataType<T> arg1)
@Deprecated protected final <T> TableField<R,T> createField(String arg0, DataType<T> arg1, String arg2)
@Deprecated protected final <T,U> TableField<R,U> createField(String arg0, DataType<T> arg1, String arg2, Converter<T,U> arg3)
@Deprecated protected final <T,U> TableField<R,U> createField(String arg0, DataType<T> arg1, String arg2, Binding<T,U> arg3)
@Deprecated protected final <T,X,U> TableField<R,U> createField(String arg0, DataType<T> arg1, String arg2, Converter<X,U> arg3, Binding<T,X> arg4)
protected static final <R extends Record,T> TableField<R,T> createField(Name arg0, DataType<T> arg1, Table<R> arg2)
protected static final <R extends Record,T> TableField<R,T> createField(Name arg0, DataType<T> arg1, Table<R> arg2, String arg3)
protected static final <R extends Record,T,U> TableField<R,U> createField(Name arg0, DataType<T> arg1, Table<R> arg2, String arg3, Converter<T,U> arg4)
protected static final <R extends Record,T,U> TableField<R,U> createField(Name arg0, DataType<T> arg1, Table<R> arg2, String arg3, Binding<T,U> arg4)
protected static final <R extends Record,T,X,U> TableField<R,U> createField(Name arg0, DataType<T> arg1, Table<R> arg2, String arg3, Converter<X,U> arg4, Binding<T,X> arg5)
protected final <T> TableField<R,T> createField(Name arg0, DataType<T> arg1)
protected final <T> TableField<R,T> createField(Name arg0, DataType<T> arg1, String arg2)
protected final <T,U> TableField<R,U> createField(Name arg0, DataType<T> arg1, String arg2, Converter<T,U> arg3)
protected final <T,U> TableField<R,U> createField(Name arg0, DataType<T> arg1, String arg2, Binding<T,U> arg3)
protected final <T,X,U> TableField<R,U> createField(Name arg0, DataType<T> arg1, String arg2, Converter<X,U> arg3, Binding<T,X> arg4)
public final Table<R> useIndexForJoin(String... arg0)
useIndexForJoin in interface Table<R extends Record>public final Table<R> useIndexForOrderBy(String... arg0)
useIndexForOrderBy in interface Table<R extends Record>public final Table<R> useIndexForGroupBy(String... arg0)
useIndexForGroupBy in interface Table<R extends Record>public final Table<R> ignoreIndex(String... arg0)
ignoreIndex in interface Table<R extends Record>public final Table<R> ignoreIndexForJoin(String... arg0)
ignoreIndexForJoin in interface Table<R extends Record>public final Table<R> ignoreIndexForOrderBy(String... arg0)
ignoreIndexForOrderBy in interface Table<R extends Record>public final Table<R> ignoreIndexForGroupBy(String... arg0)
ignoreIndexForGroupBy in interface Table<R extends Record>public final Table<R> forceIndex(String... arg0)
forceIndex in interface Table<R extends Record>public final Table<R> forceIndexForJoin(String... arg0)
forceIndexForJoin in interface Table<R extends Record>public final Table<R> forceIndexForOrderBy(String... arg0)
forceIndexForOrderBy in interface Table<R extends Record>public final Table<R> forceIndexForGroupBy(String... arg0)
forceIndexForGroupBy in interface Table<R extends Record>public final Table<R> as(Table<?> arg0, BiFunction<? super Field<?>,? super Integer,? extends Field<?>> arg1)
public final DivideByOnStep divideBy(Table<?> arg0)
public final TableOnStep<R> leftSemiJoin(TableLike<?> arg0)
leftSemiJoin in interface Table<R extends Record>public final TableOnStep<R> leftAntiJoin(TableLike<?> arg0)
leftAntiJoin in interface Table<R extends Record>public final TableOptionalOnStep<Record> join(TableLike<?> arg0, JoinType arg1)
public final TableOnStep<Record> join(TableLike<?> arg0)
public final TableOnStep<Record> join(SQL arg0)
public final TableOnStep<Record> join(String arg0)
public final TableOnStep<Record> join(String arg0, Object... arg1)
public final TableOnStep<Record> join(String arg0, QueryPart... arg1)
public final TableOnStep<Record> join(Name arg0)
public final TableOnStep<Record> innerJoin(TableLike<?> arg0)
public final TableOnStep<Record> innerJoin(SQL arg0)
public final TableOnStep<Record> innerJoin(String arg0)
public final TableOnStep<Record> innerJoin(String arg0, Object... arg1)
public final TableOnStep<Record> innerJoin(String arg0, QueryPart... arg1)
public final TableOnStep<Record> innerJoin(Name arg0)
public final TablePartitionByStep<Record> leftJoin(TableLike<?> arg0)
public final TablePartitionByStep<Record> leftJoin(SQL arg0)
public final TablePartitionByStep<Record> leftJoin(String arg0)
public final TablePartitionByStep<Record> leftJoin(String arg0, Object... arg1)
public final TablePartitionByStep<Record> leftJoin(String arg0, QueryPart... arg1)
public final TablePartitionByStep<Record> leftJoin(Name arg0)
public final TablePartitionByStep<Record> leftOuterJoin(TableLike<?> arg0)
leftOuterJoin in interface Table<R extends Record>public final TablePartitionByStep<Record> leftOuterJoin(SQL arg0)
leftOuterJoin in interface Table<R extends Record>public final TablePartitionByStep<Record> leftOuterJoin(String arg0)
leftOuterJoin in interface Table<R extends Record>public final TablePartitionByStep<Record> leftOuterJoin(String arg0, Object... arg1)
leftOuterJoin in interface Table<R extends Record>public final TablePartitionByStep<Record> leftOuterJoin(String arg0, QueryPart... arg1)
leftOuterJoin in interface Table<R extends Record>public final TablePartitionByStep<Record> leftOuterJoin(Name arg0)
leftOuterJoin in interface Table<R extends Record>public final TablePartitionByStep<Record> rightJoin(TableLike<?> arg0)
public final TablePartitionByStep<Record> rightJoin(SQL arg0)
public final TablePartitionByStep<Record> rightJoin(String arg0)
public final TablePartitionByStep<Record> rightJoin(String arg0, Object... arg1)
public final TablePartitionByStep<Record> rightJoin(String arg0, QueryPart... arg1)
public final TablePartitionByStep<Record> rightJoin(Name arg0)
public final TablePartitionByStep<Record> rightOuterJoin(TableLike<?> arg0)
rightOuterJoin in interface Table<R extends Record>public final TablePartitionByStep<Record> rightOuterJoin(SQL arg0)
rightOuterJoin in interface Table<R extends Record>public final TablePartitionByStep<Record> rightOuterJoin(String arg0)
rightOuterJoin in interface Table<R extends Record>public final TablePartitionByStep<Record> rightOuterJoin(String arg0, Object... arg1)
rightOuterJoin in interface Table<R extends Record>public final TablePartitionByStep<Record> rightOuterJoin(String arg0, QueryPart... arg1)
rightOuterJoin in interface Table<R extends Record>public final TablePartitionByStep<Record> rightOuterJoin(Name arg0)
rightOuterJoin in interface Table<R extends Record>public final TableOnStep<Record> fullOuterJoin(TableLike<?> arg0)
fullOuterJoin in interface Table<R extends Record>public final TableOnStep<Record> fullOuterJoin(SQL arg0)
fullOuterJoin in interface Table<R extends Record>public final TableOnStep<Record> fullOuterJoin(String arg0)
fullOuterJoin in interface Table<R extends Record>public final TableOnStep<Record> fullOuterJoin(String arg0, Object... arg1)
fullOuterJoin in interface Table<R extends Record>public final TableOnStep<Record> fullOuterJoin(String arg0, QueryPart... arg1)
fullOuterJoin in interface Table<R extends Record>public final TableOnStep<Record> fullOuterJoin(Name arg0)
fullOuterJoin in interface Table<R extends Record>public final TableOnStep<Record> fullJoin(TableLike<?> arg0)
public final TableOnStep<Record> fullJoin(SQL arg0)
public final TableOnStep<Record> fullJoin(String arg0)
public final TableOnStep<Record> fullJoin(String arg0, Object... arg1)
public final TableOnStep<Record> fullJoin(String arg0, QueryPart... arg1)
public final TableOnStep<Record> fullJoin(Name arg0)
public final Table<Record> naturalJoin(TableLike<?> arg0)
naturalJoin in interface Table<R extends Record>public final Table<Record> naturalJoin(SQL arg0)
naturalJoin in interface Table<R extends Record>public final Table<Record> naturalJoin(String arg0)
naturalJoin in interface Table<R extends Record>public final Table<Record> naturalJoin(String arg0, Object... arg1)
naturalJoin in interface Table<R extends Record>public final Table<Record> naturalJoin(String arg0, QueryPart... arg1)
naturalJoin in interface Table<R extends Record>public final Table<Record> naturalJoin(Name arg0)
naturalJoin in interface Table<R extends Record>public final Table<Record> naturalLeftOuterJoin(TableLike<?> arg0)
naturalLeftOuterJoin in interface Table<R extends Record>public final Table<Record> naturalLeftOuterJoin(SQL arg0)
naturalLeftOuterJoin in interface Table<R extends Record>public final Table<Record> naturalLeftOuterJoin(String arg0)
naturalLeftOuterJoin in interface Table<R extends Record>public final Table<Record> naturalLeftOuterJoin(String arg0, Object... arg1)
naturalLeftOuterJoin in interface Table<R extends Record>public final Table<Record> naturalLeftOuterJoin(String arg0, QueryPart... arg1)
naturalLeftOuterJoin in interface Table<R extends Record>public final Table<Record> naturalLeftOuterJoin(Name arg0)
naturalLeftOuterJoin in interface Table<R extends Record>public final Table<Record> naturalRightOuterJoin(TableLike<?> arg0)
naturalRightOuterJoin in interface Table<R extends Record>public final Table<Record> naturalRightOuterJoin(SQL arg0)
naturalRightOuterJoin in interface Table<R extends Record>public final Table<Record> naturalRightOuterJoin(String arg0)
naturalRightOuterJoin in interface Table<R extends Record>public final Table<Record> naturalRightOuterJoin(String arg0, Object... arg1)
naturalRightOuterJoin in interface Table<R extends Record>public final Table<Record> naturalRightOuterJoin(String arg0, QueryPart... arg1)
naturalRightOuterJoin in interface Table<R extends Record>public final Table<Record> naturalRightOuterJoin(Name arg0)
naturalRightOuterJoin in interface Table<R extends Record>public final Table<Record> naturalFullOuterJoin(TableLike<?> arg0)
naturalFullOuterJoin in interface Table<R extends Record>public final Table<Record> naturalFullOuterJoin(SQL arg0)
naturalFullOuterJoin in interface Table<R extends Record>public final Table<Record> naturalFullOuterJoin(String arg0)
naturalFullOuterJoin in interface Table<R extends Record>public final Table<Record> naturalFullOuterJoin(String arg0, Object... arg1)
naturalFullOuterJoin in interface Table<R extends Record>public final Table<Record> naturalFullOuterJoin(String arg0, QueryPart... arg1)
naturalFullOuterJoin in interface Table<R extends Record>public final Table<Record> naturalFullOuterJoin(Name arg0)
naturalFullOuterJoin in interface Table<R extends Record>public final Table<Record> crossApply(TableLike<?> arg0)
crossApply in interface Table<R extends Record>public final Table<Record> crossApply(SQL arg0)
crossApply in interface Table<R extends Record>public final Table<Record> crossApply(String arg0)
crossApply in interface Table<R extends Record>public final Table<Record> crossApply(String arg0, Object... arg1)
crossApply in interface Table<R extends Record>public final Table<Record> crossApply(String arg0, QueryPart... arg1)
crossApply in interface Table<R extends Record>public final Table<Record> crossApply(Name arg0)
crossApply in interface Table<R extends Record>public final Table<Record> outerApply(TableLike<?> arg0)
outerApply in interface Table<R extends Record>public final Table<Record> outerApply(SQL arg0)
outerApply in interface Table<R extends Record>public final Table<Record> outerApply(String arg0)
outerApply in interface Table<R extends Record>public final Table<Record> outerApply(String arg0, Object... arg1)
outerApply in interface Table<R extends Record>public final Table<Record> outerApply(String arg0, QueryPart... arg1)
outerApply in interface Table<R extends Record>public final Table<Record> outerApply(Name arg0)
outerApply in interface Table<R extends Record>public final TableOptionalOnStep<Record> straightJoin(TableLike<?> arg0)
straightJoin in interface Table<R extends Record>public final TableOptionalOnStep<Record> straightJoin(SQL arg0)
straightJoin in interface Table<R extends Record>public final TableOptionalOnStep<Record> straightJoin(String arg0)
straightJoin in interface Table<R extends Record>public final TableOptionalOnStep<Record> straightJoin(String arg0, Object... arg1)
straightJoin in interface Table<R extends Record>public final TableOptionalOnStep<Record> straightJoin(String arg0, QueryPart... arg1)
straightJoin in interface Table<R extends Record>public final TableOptionalOnStep<Record> straightJoin(Name arg0)
straightJoin in interface Table<R extends Record>public final Name getUnqualifiedName()
getUnqualifiedName in interface Namedpublic final String getComment()
getComment in interface Namedpublic final Comment getCommentPart()
getCommentPart in interface Named@Deprecated public final void toSQL(RenderContext arg0)
toSQL in interface QueryPartInternal@Deprecated public final void bind(BindContext arg0) throws DataAccessException
bind in interface QueryPartInternalDataAccessException@Deprecated protected final DSLContext create()
@Deprecated protected final DSLContext create(Configuration arg0)
@Deprecated protected final DSLContext create(Context<?> arg0)
protected final DataAccessException translate(String arg0, SQLException arg1)
Copyright © 2021. All rights reserved.