Uses of Interface
org.jooq.ArrayRecord

Packages that use ArrayRecord
org.jooq   
org.jooq.impl   
 

Uses of ArrayRecord in org.jooq
 

Methods in org.jooq with type parameters of type ArrayRecord
<A extends ArrayRecord<T>,T>
void
StoreQuery.addValueAsArray(Field<A> field, List<T> value)
          Add a value to the store statement
<A extends ArrayRecord<T>,T>
void
StoreQuery.addValueAsArray(Field<A> field, T... value)
          Add a value to the store statement
<A extends ArrayRecord<T>>
DataType<A>
DataType.asArrayDataType(Class<A> arrayDataType)
          Retrieve the data type for an Oracle-style ARRAY of this data type
<A extends ArrayRecord<T>,T>
T[]
Record.getValueAsArray(Field<A> field)
          Get an array value from this Record, providing an ArrayRecord field.
<A extends ArrayRecord<T>,T>
T[]
Record.getValueAsArray(Field<A> field, T[] defaultValue)
          Get an array value from this Record, providing an ArrayRecord field.
<A extends ArrayRecord<T>,T>
T[]
Result.getValueAsArray(int index, Field<A> field)
          Convenience method to fetch a value at a given position in the result.
<A extends ArrayRecord<T>,T>
T[]
Result.getValueAsArray(int index, Field<A> field, T[] defaultValue)
          Convenience method to fetch a value at a given position in the result.
 

Uses of ArrayRecord in org.jooq.impl
 

Classes in org.jooq.impl that implement ArrayRecord
 class ArrayRecordImpl<T>
          A common base class for Oracle ARRAY types This type is for JOOQ INTERNAL USE only.
 

Methods in org.jooq.impl with type parameters of type ArrayRecord
<A extends ArrayRecord<T>>
DataType<A>
AbstractDataType.asArrayDataType(Class<A> arrayDataType)
           
 

Methods in org.jooq.impl with parameters of type ArrayRecord
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 © 2012. All Rights Reserved.