Package | Description |
---|---|
org.jooq |
The
org.jooq package contains jOOQ's public API
This package mostly contains interfaces that are implemented by the
org.jooq.impl package. |
org.jooq.impl |
The
org.jooq.impl package contains jOOQ's implementation classes
This package provides implementations for the jOOQ API from
org.jooq , whose interfaces are constructed mostly through the
Factory class, which hides implementation facts from
the public API |
Modifier and Type | Method and Description |
---|---|
<A extends ArrayRecord<T>,T> |
StoreQuery.addValueAsArray(Field<A> field,
List<T> value)
Add a value to the store statement
|
<A extends ArrayRecord<T>,T> |
StoreQuery.addValueAsArray(Field<A> field,
T... value)
Add a value to the store statement
|
<A extends ArrayRecord<T>> |
DataType.asArrayDataType(Class<A> arrayDataType)
Retrieve the data type for an Oracle-style ARRAY of this data type
|
<A extends ArrayRecord<T>,T> |
Record.getValueAsArray(Field<A> field)
Deprecated.
- 2.6.0 [#1839] - These methods will be removed in the
future. Do not reuse
|
<A extends ArrayRecord<T>,T> |
Record.getValueAsArray(Field<A> field,
T[] defaultValue)
Deprecated.
- 2.6.0 [#1839] - These methods will be removed in the
future. Do not reuse
|
<A extends ArrayRecord<T>,T> |
Result.getValueAsArray(int index,
Field<A> field)
Deprecated.
- 2.6.0 [#1839] - These methods will be removed in the
future. Do not reuse
|
<A extends ArrayRecord<T>,T> |
Result.getValueAsArray(int index,
Field<A> field,
T[] defaultValue)
Deprecated.
- 2.6.0 [#1839] - These methods will be removed in the
future. Do not reuse
|
Modifier and Type | Class and Description |
---|---|
class |
ArrayRecordImpl<T>
A common base class for Oracle ARRAY types
This type is for JOOQ INTERNAL USE only.
|
Modifier and Type | Method and Description |
---|---|
<A extends ArrayRecord<T>> |
AbstractDataType.asArrayDataType(Class<A> arrayDataType) |
Modifier and Type | Method and Description |
---|---|
static Table<?> |
Factory.table(ArrayRecord<?> array)
A synonym for
Factory.unnest(ArrayRecord) |
static Table<?> |
Factory.unnest(ArrayRecord<?> array)
Create a table from an array of values
This wraps the argument array in a
TABLE function for
Oracle. |
Copyright © 2013. All Rights Reserved.