Uses of Interface
org.jooq.Result
-
Packages that use Result Package Description org.jooq This package contains jOOQ's public API.org.jooq.impl This package contains jOOQ's implementation classes.org.jooq.tools.jdbc This package contains compatibility classes to bridge between JDBC 4.0 and JDBC 4.1.org.jooq.util.aurorapostgres This package contains classes related to theSQLDialect.AURORA_POSTGRES
dialect family.org.jooq.util.h2 This package contains classes related to theSQLDialect.H2
dialect family.org.jooq.util.hsqldb This package contains classes related to theSQLDialect.HSQLDB
dialect family.org.jooq.util.oracle This package contains classes related to theSQLDialect.ORACLE
dialect family.org.jooq.util.postgres This package contains classes related to theSQLDialect.POSTGRES
dialect family.org.jooq.util.redshift This package contains classes related to theSQLDialect.REDSHIFT
dialect family.org.jooq.util.vertica This package contains classes related to theSQLDialect.VERTICA
dialect family. -
-
Uses of Result in org.jooq
Methods in org.jooq that return Result Modifier and Type Method Description @NotNull Result<R>
Cursor. fetch()
Fetch all remaining records as a result.@NotNull Result<R>
Cursor. fetch(int number)
Deprecated.- 3.10 - [#6363] - UseCursor.fetchNext(int)
instead.@NotNull Result<R>
DeleteResultStep. fetch()
The result holding returned values as specified by theDeleteReturningStep
.@NotNull Result<Record>
DSLContext. fetch(String sql)
Execute a new query holding plain SQL.@NotNull Result<Record>
DSLContext. fetch(String sql, Object... bindings)
Execute a new query holding plain SQL.@NotNull Result<Record>
DSLContext. fetch(String sql, QueryPart... parts)
Execute a new query holding plain SQL.@NotNull Result<Record>
DSLContext. fetch(ResultSet rs)
@NotNull Result<Record>
DSLContext. fetch(ResultSet rs, Class<?>... types)
@NotNull Result<Record>
DSLContext. fetch(ResultSet rs, DataType<?>... types)
@NotNull Result<Record>
DSLContext. fetch(ResultSet rs, Field<?>... fields)
<R extends Record>
@NotNull Result<R>DSLContext. fetch(ResultQuery<R> query)
Execute aResultQuery
in the context of thisDSLContext
and return results.@NotNull Result<Record>
DSLContext. fetch(SQL sql)
Execute a new query holding plain SQL.<R extends Record>
@NotNull Result<R>DSLContext. fetch(Table<R> table)
Execute and return all records for<R extends Record>
@NotNull Result<R>DSLContext. fetch(Table<R> table, Collection<? extends Condition> conditions)
Execute and return all records for<R extends Record>
@NotNull Result<R>DSLContext. fetch(Table<R> table, Condition condition)
Execute and return all records for<R extends Record>
@NotNull Result<R>DSLContext. fetch(Table<R> table, Condition... conditions)
Execute and return all records for@NotNull Result<R>
InsertResultStep. fetch()
The result holding returned values as specified by theInsertReturningStep
.@NotNull Result<R>
ResultQuery. fetch()
Execute the query and return the generated result.@NotNull Result<R>
UpdateResultStep. fetch()
The result holding returned values as specified by theUpdateReturningStep
.<R extends TableRecord<R>>
@NotNull Result<R>DSLContext. fetchByExample(R example)
Execute a "Query by Example" (QBE) based on an example record.@NotNull Result<R>
ForeignKey. fetchChildren(Collection<? extends O> records)
Fetch child records of a given set of records through this foreign key@NotNull Result<R>
ForeignKey. fetchChildren(O record)
Fetch child records of a given record through this foreign key@NotNull Result<R>
ForeignKey. fetchChildren(O... records)
Fetch child records of a given set of records through this foreign key<O extends TableRecord<O>>
@NotNull Result<O>Result. fetchChildren(ForeignKey<O,R> key)
Fetch child records of this record, given a foreign key, as if fetching fromchildren(ForeignKey)
.<O extends TableRecord<O>>
@NotNull Result<O>UpdatableRecord. fetchChildren(ForeignKey<O,R> key)
Fetch child records of this record, given a foreign key.@NotNull Result<Record>
DSLContext. fetchFromCSV(String string)
Fetch all data from a CSV string.@NotNull Result<Record>
DSLContext. fetchFromCSV(String string, boolean header)
Fetch all data from a CSV string.@NotNull Result<Record>
DSLContext. fetchFromCSV(String string, boolean header, char delimiter)
Fetch all data from a CSV string.@NotNull Result<Record>
DSLContext. fetchFromCSV(String string, char delimiter)
Fetch all data from a CSV string.@NotNull Result<Record>
DSLContext. fetchFromHTML(String string)
Convert an HTML table into a jOOQResult
.@NotNull Result<Record>
DSLContext. fetchFromJSON(String string)
Fetch all data from a JSON string.@NotNull Result<Record>
DSLContext. fetchFromStringData(String[]... data)
Fetch all data from a list of strings.@NotNull Result<Record>
DSLContext. fetchFromStringData(List<String[]> data)
Fetch all data from a list of strings.@NotNull Result<Record>
DSLContext. fetchFromStringData(List<String[]> data, boolean header)
Fetch all data from a list of strings.@NotNull Result<Record>
DSLContext. fetchFromTXT(String string)
Fetch all data from a formatted string.@NotNull Result<Record>
DSLContext. fetchFromTXT(String string, String nullLiteral)
Fetch all data from a formatted string.@NotNull Result<Record>
DSLContext. fetchFromXML(String string)
Fetch all data from an XML string.<Z extends Record>
@NotNull Result<Z>Cursor. fetchInto(Table<Z> table)
Map resulting records onto a custom record.<Z extends Record>
@NotNull Result<Z>ResultQuery. fetchInto(Table<Z> table)
Map resulting records onto a custom record.@NotNull Result<R>
Cursor. fetchNext(int number)
Fetch the next couple of records from the cursor.@NotNull Result<O>
ForeignKey. fetchParents(Collection<? extends R> records)
Fetch parent records of a given set of record through this foreign key@NotNull Result<O>
ForeignKey. fetchParents(R... records)
Fetch parent records of a given set of record through this foreign key<O extends UpdatableRecord<O>>
@NotNull Result<O>Result. fetchParents(ForeignKey<R,O> key)
Fetch parent records of this record, given a foreign key, as if fetching fromparents(ForeignKey)
.@Nullable Result<R>
ResultQuery. getResult()
Return the result generated by a previous call to execute().@NotNull Result<?>
StoreQuery. getResult()
The records holding returned values as specified by any of theStoreQuery.setReturning()
methods.@NotNull Result<R>
DeleteQuery. getReturnedRecords()
The records holding returned values as specified by any of theDeleteQuery.setReturning()
methods.@NotNull Result<R>
InsertQuery. getReturnedRecords()
The records holding returned values as specified by any of theStoreQuery.setReturning()
methods.@NotNull Result<R>
StoreQuery. getReturnedRecords()
The records holding returned values as specified by any of theStoreQuery.setReturning()
methods.@NotNull Result<R>
UpdateQuery. getReturnedRecords()
The records holding returned values as specified by any of theStoreQuery.setReturning()
methods.@NotNull Result<R>
Result. intern(int... fieldIndexes)
Deprecated.- 3.10 - [#6254] - This functionality is no longer supported and will be removed in 4.0@NotNull Result<R>
Result. intern(String... fieldNames)
Deprecated.- 3.10 - [#6254] - This functionality is no longer supported and will be removed in 4.0@NotNull Result<R>
Result. intern(Field<?>... fields)
Deprecated.- 3.10 - [#6254] - This functionality is no longer supported and will be removed in 4.0@NotNull Result<R>
Result. intern(Name... fieldNames)
Deprecated.- 3.10 - [#6254] - This functionality is no longer supported and will be removed in 4.0@NotNull Result<Record>
Result. into(Field<?>... fields)
Copy all records from this result into a new result with new records holding only a subset of the previous fields.<T1> @NotNull Result<Record1<T1>>
Result. into(Field<T1> field1)
Copy all records from this result into a new result with new records holding only a subset of the previous fields.<T1,T2>
@NotNull Result<Record2<T1,T2>>Result. into(Field<T1> field1, Field<T2> field2)
Copy all records from this result into a new result with new records holding only a subset of the previous fields.<T1,T2,T3>
@NotNull Result<Record3<T1,T2,T3>>Result. into(Field<T1> field1, Field<T2> field2, Field<T3> field3)
Copy all records from this result into a new result with new records holding only a subset of the previous fields.<T1,T2,T3,T4>
@NotNull Result<Record4<T1,T2,T3,T4>>Result. into(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4)
Copy all records from this result into a new result with new records holding only a subset of the previous fields.<T1,T2,T3,T4,T5>
@NotNull Result<Record5<T1,T2,T3,T4,T5>>Result. into(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5)
Copy all records from this result into a new result with new records holding only a subset of the previous fields.<T1,T2,T3,T4,T5,T6>
@NotNull Result<Record6<T1,T2,T3,T4,T5,T6>>Result. into(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6)
Copy all records from this result into a new result with new records holding only a subset of the previous fields.<T1,T2,T3,T4,T5,T6,T7>
@NotNull Result<Record7<T1,T2,T3,T4,T5,T6,T7>>Result. into(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7)
Copy all records from this result into a new result with new records holding only a subset of the previous fields.<T1,T2,T3,T4,T5,T6,T7,T8>
@NotNull Result<Record8<T1,T2,T3,T4,T5,T6,T7,T8>>Result. into(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8)
Copy all records from this result into a new result with new records holding only a subset of the previous fields.<T1,T2,T3,T4,T5,T6,T7,T8,T9>
@NotNull Result<Record9<T1,T2,T3,T4,T5,T6,T7,T8,T9>>Result. into(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9)
Copy all records from this result into a new result with new records holding only a subset of the previous fields.<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10>
@NotNull Result<Record10<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10>>Result. into(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10)
Copy all records from this result into a new result with new records holding only a subset of the previous fields.<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>
@NotNull Result<Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>>Result. into(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11)
Copy all records from this result into a new result with new records holding only a subset of the previous fields.<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12>
@NotNull Result<Record12<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12>>Result. into(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12)
Copy all records from this result into a new result with new records holding only a subset of the previous fields.<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13>
@NotNull Result<Record13<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13>>Result. into(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13)
Copy all records from this result into a new result with new records holding only a subset of the previous fields.<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14>
@NotNull Result<Record14<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14>>Result. into(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14)
Copy all records from this result into a new result with new records holding only a subset of the previous fields.<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15>
@NotNull Result<Record15<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15>>Result. into(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15)
Copy all records from this result into a new result with new records holding only a subset of the previous fields.<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16>
@NotNull Result<Record16<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16>>Result. into(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16)
Copy all records from this result into a new result with new records holding only a subset of the previous fields.<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17>
@NotNull Result<Record17<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17>>Result. into(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17)
Copy all records from this result into a new result with new records holding only a subset of the previous fields.<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18>
@NotNull Result<Record18<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18>>Result. into(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17, Field<T18> field18)
Copy all records from this result into a new result with new records holding only a subset of the previous fields.<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19>
@NotNull Result<Record19<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19>>Result. into(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17, Field<T18> field18, Field<T19> field19)
Copy all records from this result into a new result with new records holding only a subset of the previous fields.<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20>
@NotNull Result<Record20<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20>>Result. into(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17, Field<T18> field18, Field<T19> field19, Field<T20> field20)
Copy all records from this result into a new result with new records holding only a subset of the previous fields.<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21>
@NotNull Result<Record21<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21>>Result. into(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17, Field<T18> field18, Field<T19> field19, Field<T20> field20, Field<T21> field21)
Copy all records from this result into a new result with new records holding only a subset of the previous fields.<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21,T22>
@NotNull Result<Record22<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21,T22>>Result. into(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17, Field<T18> field18, Field<T19> field19, Field<T20> field20, Field<T21> field21, Field<T22> field22)
Copy all records from this result into a new result with new records holding only a subset of the previous fields.<Z extends Record>
@NotNull Result<Z>Result. into(Table<Z> table)
Map resulting records onto a custom record.@NotNull Result<Record>
DSLContext. newResult(Collection<? extends Field<?>> fields)
Create a new emptyRecord
.@NotNull Result<Record>
DSLContext. newResult(Field<?>... fields)
Create a new emptyRecord
.<T1> @NotNull Result<Record1<T1>>
DSLContext. newResult(Field<T1> field1)
Create a new emptyResult
.<T1,T2>
@NotNull Result<Record2<T1,T2>>DSLContext. newResult(Field<T1> field1, Field<T2> field2)
Create a new emptyResult
.<T1,T2,T3>
@NotNull Result<Record3<T1,T2,T3>>DSLContext. newResult(Field<T1> field1, Field<T2> field2, Field<T3> field3)
Create a new emptyResult
.<T1,T2,T3,T4>
@NotNull Result<Record4<T1,T2,T3,T4>>DSLContext. newResult(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4)
Create a new emptyResult
.<T1,T2,T3,T4,T5>
@NotNull Result<Record5<T1,T2,T3,T4,T5>>DSLContext. newResult(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5)
Create a new emptyResult
.<T1,T2,T3,T4,T5,T6>
@NotNull Result<Record6<T1,T2,T3,T4,T5,T6>>DSLContext. newResult(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6)
Create a new emptyResult
.<T1,T2,T3,T4,T5,T6,T7>
@NotNull Result<Record7<T1,T2,T3,T4,T5,T6,T7>>DSLContext. newResult(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7)
Create a new emptyResult
.<T1,T2,T3,T4,T5,T6,T7,T8>
@NotNull Result<Record8<T1,T2,T3,T4,T5,T6,T7,T8>>DSLContext. newResult(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8)
Create a new emptyResult
.<T1,T2,T3,T4,T5,T6,T7,T8,T9>
@NotNull Result<Record9<T1,T2,T3,T4,T5,T6,T7,T8,T9>>DSLContext. newResult(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9)
Create a new emptyResult
.<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10>
@NotNull Result<Record10<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10>>DSLContext. newResult(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10)
Create a new emptyResult
.<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>
@NotNull Result<Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>>DSLContext. newResult(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11)
Create a new emptyResult
.<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12>
@NotNull Result<Record12<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12>>DSLContext. newResult(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12)
Create a new emptyResult
.<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13>
@NotNull Result<Record13<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13>>DSLContext. newResult(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13)
Create a new emptyResult
.<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14>
@NotNull Result<Record14<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14>>DSLContext. newResult(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14)
Create a new emptyResult
.<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15>
@NotNull Result<Record15<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15>>DSLContext. newResult(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15)
Create a new emptyResult
.<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16>
@NotNull Result<Record16<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16>>DSLContext. newResult(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16)
Create a new emptyResult
.<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17>
@NotNull Result<Record17<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17>>DSLContext. newResult(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17)
Create a new emptyResult
.<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18>
@NotNull Result<Record18<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18>>DSLContext. newResult(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17, Field<T18> field18)
Create a new emptyResult
.<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19>
@NotNull Result<Record19<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19>>DSLContext. newResult(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17, Field<T18> field18, Field<T19> field19)
Create a new emptyResult
.<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20>
@NotNull Result<Record20<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20>>DSLContext. newResult(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17, Field<T18> field18, Field<T19> field19, Field<T20> field20)
Create a new emptyResult
.<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21>
@NotNull Result<Record21<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21>>DSLContext. newResult(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17, Field<T18> field18, Field<T19> field19, Field<T20> field20, Field<T21> field21)
Create a new emptyResult
.<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21,T22>
@NotNull Result<Record22<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21,T22>>DSLContext. newResult(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17, Field<T18> field18, Field<T19> field19, Field<T20> field20, Field<T21> field21, Field<T22> field22)
Create a new emptyResult
.<R extends Record>
@NotNull Result<R>DSLContext. newResult(Table<R> table)
Create a new emptyResult
.@Nullable Result<?>
ExecuteContext. result()
The last result that was fetched from the result set, ornull
if no result has been fetched.Result<Record>
ResultOrRows. result()
The result ornull
if there was no result.@NotNull Result<R>
Result. sortAsc(int fieldIndex)
Sort this result by one of its contained fields.@NotNull Result<R>
Result. sortAsc(int fieldIndex, Comparator<?> comparator)
Sort this result by one of its contained fields using a comparator.@NotNull Result<R>
Result. sortAsc(String fieldName)
Sort this result by one of its contained fields.@NotNull Result<R>
Result. sortAsc(String fieldName, Comparator<?> comparator)
Sort this result by one of its contained fields using a comparator.@NotNull Result<R>
Result. sortAsc(Comparator<? super R> comparator)
Sort this result using a comparator that can compare records.<T extends Comparable<? super T>>
@NotNull Result<R>Result. sortAsc(Field<T> field)
Sort this result by one of its contained fields.<T> @NotNull Result<R>
Result. sortAsc(Field<T> field, Comparator<? super T> comparator)
Sort this result by one of its contained fields using a comparator.@NotNull Result<R>
Result. sortAsc(Name fieldName)
Sort this result by one of its contained fields.@NotNull Result<R>
Result. sortAsc(Name fieldName, Comparator<?> comparator)
Sort this result by one of its contained fields using a comparator.@NotNull Result<R>
Result. sortDesc(int fieldIndex)
Reverse-sort this result by one of its contained fields.@NotNull Result<R>
Result. sortDesc(int fieldIndex, Comparator<?> comparator)
Reverse-sort this result by one of its contained fields using a comparator.@NotNull Result<R>
Result. sortDesc(String fieldName)
Reverse-sort this result by one of its contained fields.@NotNull Result<R>
Result. sortDesc(String fieldName, Comparator<?> comparator)
Reverse-sort this result by one of its contained fields using a comparator.@NotNull Result<R>
Result. sortDesc(Comparator<? super R> comparator)
Reverse-sort this result using a comparator that can compare records.<T extends Comparable<? super T>>
@NotNull Result<R>Result. sortDesc(Field<T> field)
Reverse-sort this result by one of its contained fields.<T> @NotNull Result<R>
Result. sortDesc(Field<T> field, Comparator<? super T> comparator)
Reverse-sort this result by one of its contained fields using a comparator.@NotNull Result<R>
Result. sortDesc(Name fieldName)
Reverse-sort this result by one of its contained fields.@NotNull Result<R>
Result. sortDesc(Name fieldName, Comparator<?> comparator)
Reverse-sort this result by one of its contained fields using a comparator.Methods in org.jooq that return types with arguments of type Result Modifier and Type Method Description @NotNull CompletionStage<Result<Record>>
DSLContext. fetchAsync(String sql)
Fetch results in a newCompletionStage
.@NotNull CompletionStage<Result<Record>>
DSLContext. fetchAsync(String sql, Object... bindings)
Fetch results in a newCompletionStage
.@NotNull CompletionStage<Result<Record>>
DSLContext. fetchAsync(String sql, QueryPart... parts)
Fetch results in a newCompletionStage
.@NotNull CompletionStage<Result<Record>>
DSLContext. fetchAsync(ResultSet rs)
Fetch results in a newCompletionStage
.@NotNull CompletionStage<Result<Record>>
DSLContext. fetchAsync(ResultSet rs, Class<?>... types)
Fetch results in a newCompletionStage
.@NotNull CompletionStage<Result<Record>>
DSLContext. fetchAsync(ResultSet rs, DataType<?>... types)
Fetch results in a newCompletionStage
.@NotNull CompletionStage<Result<Record>>
DSLContext. fetchAsync(ResultSet rs, Field<?>... fields)
Fetch results in a newCompletionStage
.@NotNull CompletionStage<Result<Record>>
DSLContext. fetchAsync(Executor executor, String sql)
Fetch results in a newCompletionStage
that is asynchronously completed by a task running in the given executor.@NotNull CompletionStage<Result<Record>>
DSLContext. fetchAsync(Executor executor, String sql, Object... bindings)
Fetch results in a newCompletionStage
that is asynchronously completed by a task running in the given executor.@NotNull CompletionStage<Result<Record>>
DSLContext. fetchAsync(Executor executor, String sql, QueryPart... parts)
Fetch results in a newCompletionStage
that is asynchronously completed by a task running in the given executor.@NotNull CompletionStage<Result<Record>>
DSLContext. fetchAsync(Executor executor, ResultSet rs)
Fetch results in a newCompletionStage
that is asynchronously completed by a task running in the given executor.@NotNull CompletionStage<Result<Record>>
DSLContext. fetchAsync(Executor executor, ResultSet rs, Class<?>... types)
Fetch results in a newCompletionStage
that is asynchronously completed by a task running in the given executor.@NotNull CompletionStage<Result<Record>>
DSLContext. fetchAsync(Executor executor, ResultSet rs, DataType<?>... types)
Fetch results in a newCompletionStage
that is asynchronously completed by a task running in the given executor.@NotNull CompletionStage<Result<Record>>
DSLContext. fetchAsync(Executor executor, ResultSet rs, Field<?>... fields)
Fetch results in a newCompletionStage
that is asynchronously completed by a task running in the given executor.<R extends Record>
@NotNull CompletionStage<Result<R>>DSLContext. fetchAsync(Executor executor, ResultQuery<R> query)
Fetch results in a newCompletionStage
that is asynchronously completed by a task running in the given executor.@NotNull CompletionStage<Result<Record>>
DSLContext. fetchAsync(Executor executor, SQL sql)
Fetch results in a newCompletionStage
that is asynchronously completed by a task running in the given executor.<R extends Record>
@NotNull CompletionStage<Result<R>>DSLContext. fetchAsync(Executor executor, Table<R> table)
Execute and return all records asynchronously for<R extends Record>
@NotNull CompletionStage<Result<R>>DSLContext. fetchAsync(Executor executor, Table<R> table, Collection<? extends Condition> conditions)
Execute and return all records asynchronously for<R extends Record>
@NotNull CompletionStage<Result<R>>DSLContext. fetchAsync(Executor executor, Table<R> table, Condition condition)
Execute and return all records asynchronously for<R extends Record>
@NotNull CompletionStage<Result<R>>DSLContext. fetchAsync(Executor executor, Table<R> table, Condition... conditions)
Execute and return all records asynchronously for<R extends Record>
@NotNull CompletionStage<Result<R>>DSLContext. fetchAsync(ResultQuery<R> query)
Fetch results in a newCompletionStage
.@NotNull CompletionStage<Result<Record>>
DSLContext. fetchAsync(SQL sql)
Fetch results in a newCompletionStage
.<R extends Record>
@NotNull CompletionStage<Result<R>>DSLContext. fetchAsync(Table<R> table)
Execute and return all records asynchronously for<R extends Record>
@NotNull CompletionStage<Result<R>>DSLContext. fetchAsync(Table<R> table, Collection<? extends Condition> condition)
Execute and return all records asynchronously for<R extends Record>
@NotNull CompletionStage<Result<R>>DSLContext. fetchAsync(Table<R> table, Condition condition)
Execute and return all records asynchronously for<R extends Record>
@NotNull CompletionStage<Result<R>>DSLContext. fetchAsync(Table<R> table, Condition... condition)
Execute and return all records asynchronously for@NotNull CompletionStage<Result<R>>
ResultQuery. fetchAsync()
Fetch results in a newCompletionStage
.@NotNull CompletionStage<Result<R>>
ResultQuery. fetchAsync(Executor executor)
Fetch results in a newCompletionStage
that is asynchronously completed by a task running in the given executor.@NotNull Map<?,Result<R>>
ResultQuery. fetchGroups(int keyFieldIndex)
Execute the query and return aMap
with one of the result's columns as key and a list of corresponding records as value.@NotNull Map<Record,Result<R>>
ResultQuery. fetchGroups(int[] keyFieldIndexes)
Execute the query and return aMap
with the result grouped by the given keys.@NotNull Map<Record,Result<Record>>
ResultQuery. fetchGroups(int[] keyFieldIndexes, int[] valueFieldIndexes)
Execute the query and return aMap
with the result grouped by the given keys.<K> @NotNull Map<K,Result<R>>
ResultQuery. fetchGroups(Class<? extends K> keyType)
Execute the query and return aMap
with results grouped by the given key entity.@NotNull Map<?,Result<R>>
ResultQuery. fetchGroups(String keyFieldName)
Execute the query and return aMap
with one of the result's columns as key and a list of corresponding records as value.@NotNull Map<Record,Result<R>>
ResultQuery. fetchGroups(String[] keyFieldNames)
Execute the query and return aMap
with the result grouped by the given keys.@NotNull Map<Record,Result<Record>>
ResultQuery. fetchGroups(String[] keyFieldNames, String[] valueFieldNames)
Execute the query and return aMap
with the result grouped by the given keys.@NotNull Map<Record,Result<R>>
ResultQuery. fetchGroups(Field<?>[] keys)
Execute the query and return aMap
with the result grouped by the given keys.@NotNull Map<Record,Result<Record>>
ResultQuery. fetchGroups(Field<?>[] keys, Field<?>[] values)
Execute the query and return aMap
with the result grouped by the given keys.<K> @NotNull Map<K,Result<R>>
ResultQuery. fetchGroups(Field<K> key)
Execute the query and return aMap
with one of the result's columns as key and a list of corresponding records as value.@NotNull Map<?,Result<R>>
ResultQuery. fetchGroups(Name keyFieldName)
Execute the query and return aMap
with one of the result's columns as key and a list of corresponding records as value.@NotNull Map<Record,Result<R>>
ResultQuery. fetchGroups(Name[] keyFieldNames)
Execute the query and return aMap
with the result grouped by the given keys.@NotNull Map<Record,Result<Record>>
ResultQuery. fetchGroups(Name[] keyFieldNames, Name[] valueFieldNames)
Execute the query and return aMap
with the result grouped by the given keys.<K> @NotNull Map<K,Result<R>>
ResultQuery. fetchGroups(RecordMapper<? super R,K> keyMapper)
Execute the query and return aMap
with results grouped by the given key entity and mapped into the given entity type.<S extends Record>
@NotNull Map<S,Result<R>>ResultQuery. fetchGroups(Table<S> table)
Execute the query and return aMap
with the result grouped by the given table.<S extends Record,T extends Record>
@NotNull Map<S,Result<T>>ResultQuery. fetchGroups(Table<S> keyTable, Table<T> valueTable)
Execute the query and return aMap
with the result grouped by the given table.@NotNull Map<?,Result<R>>
Result. intoGroups(int keyFieldIndex)
Return aMap
with one of the result's columns as key and a list of corresponding records as value.@NotNull Map<Record,Result<R>>
Result. intoGroups(int[] keyFieldIndexes)
Return aMap
with the result grouped by the given keys.@NotNull Map<Record,Result<Record>>
Result. intoGroups(int[] keyFieldIndexes, int[] valueFieldIndexes)
Return aMap
with the result grouped by the given keys.<K> @NotNull Map<K,Result<R>>
Result. intoGroups(Class<? extends K> keyType)
Return aMap
with results grouped by the given key entity.@NotNull Map<?,Result<R>>
Result. intoGroups(String keyFieldName)
Return aMap
with one of the result's columns as key and a list of corresponding records as value.@NotNull Map<Record,Result<R>>
Result. intoGroups(String[] keyFieldNames)
Return aMap
with the result grouped by the given keys.@NotNull Map<Record,Result<Record>>
Result. intoGroups(String[] keyFieldNames, String[] valueFieldNames)
Return aMap
with the result grouped by the given keys.@NotNull Map<Record,Result<R>>
Result. intoGroups(Field<?>[] keys)
Return aMap
with the result grouped by the given keys.@NotNull Map<Record,Result<Record>>
Result. intoGroups(Field<?>[] keys, Field<?>[] values)
Return aMap
with the result grouped by the given keys.<K> @NotNull Map<K,Result<R>>
Result. intoGroups(Field<K> key)
Return aMap
with one of the result's columns as key and a list of corresponding records as value.@NotNull Map<?,Result<R>>
Result. intoGroups(Name keyFieldName)
Return aMap
with one of the result's columns as key and a list of corresponding records as value.@NotNull Map<Record,Result<R>>
Result. intoGroups(Name[] keyFieldNames)
Return aMap
with the result grouped by the given keys.@NotNull Map<Record,Result<Record>>
Result. intoGroups(Name[] keyFieldNames, Name[] valueFieldNames)
Return aMap
with the result grouped by the given keys.<K> @NotNull Map<K,Result<R>>
Result. intoGroups(RecordMapper<? super R,K> keyMapper)
Return aMap
with results grouped by the given key entity and mapped into the given entity type.<S extends Record>
@NotNull Map<S,Result<R>>Result. intoGroups(Table<S> table)
Return aMap
with the result grouped by the given key table.<S extends Record,T extends Record>
@NotNull Map<S,Result<T>>Result. intoGroups(Table<S> keyTable, Table<T> valueTable)
Return aMap
with the result grouped by the given key table.Methods in org.jooq with parameters of type Result Modifier and Type Method Description @NotNull Condition
Field. in(Result<? extends Record1<T>> result)
Create a condition to check this field against several values from a previous query.@NotNull Condition
Row1. in(Result<? extends Record1<T1>> result)
Compare this row value expression with a set of records for equality.@NotNull Condition
Row10. in(Result<? extends Record10<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10>> result)
Compare this row value expression with a set of records for equality.@NotNull Condition
Row11. in(Result<? extends Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>> result)
Compare this row value expression with a set of records for equality.@NotNull Condition
Row12. in(Result<? extends Record12<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12>> result)
Compare this row value expression with a set of records for equality.@NotNull Condition
Row13. in(Result<? extends Record13<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13>> result)
Compare this row value expression with a set of records for equality.@NotNull Condition
Row14. in(Result<? extends Record14<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14>> result)
Compare this row value expression with a set of records for equality.@NotNull Condition
Row15. in(Result<? extends Record15<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15>> result)
Compare this row value expression with a set of records for equality.@NotNull Condition
Row16. in(Result<? extends Record16<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16>> result)
Compare this row value expression with a set of records for equality.@NotNull Condition
Row17. in(Result<? extends Record17<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17>> result)
Compare this row value expression with a set of records for equality.@NotNull Condition
Row18. in(Result<? extends Record18<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18>> result)
Compare this row value expression with a set of records for equality.@NotNull Condition
Row19. in(Result<? extends Record19<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19>> result)
Compare this row value expression with a set of records for equality.@NotNull Condition
Row2. in(Result<? extends Record2<T1,T2>> result)
Compare this row value expression with a set of records for equality.@NotNull Condition
Row20. in(Result<? extends Record20<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20>> result)
Compare this row value expression with a set of records for equality.@NotNull Condition
Row21. in(Result<? extends Record21<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21>> result)
Compare this row value expression with a set of records for equality.@NotNull Condition
Row22. in(Result<? extends Record22<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21,T22>> result)
Compare this row value expression with a set of records for equality.@NotNull Condition
Row3. in(Result<? extends Record3<T1,T2,T3>> result)
Compare this row value expression with a set of records for equality.@NotNull Condition
Row4. in(Result<? extends Record4<T1,T2,T3,T4>> result)
Compare this row value expression with a set of records for equality.@NotNull Condition
Row5. in(Result<? extends Record5<T1,T2,T3,T4,T5>> result)
Compare this row value expression with a set of records for equality.@NotNull Condition
Row6. in(Result<? extends Record6<T1,T2,T3,T4,T5,T6>> result)
Compare this row value expression with a set of records for equality.@NotNull Condition
Row7. in(Result<? extends Record7<T1,T2,T3,T4,T5,T6,T7>> result)
Compare this row value expression with a set of records for equality.@NotNull Condition
Row8. in(Result<? extends Record8<T1,T2,T3,T4,T5,T6,T7,T8>> result)
Compare this row value expression with a set of records for equality.@NotNull Condition
Row9. in(Result<? extends Record9<T1,T2,T3,T4,T5,T6,T7,T8,T9>> result)
Compare this row value expression with a set of records for equality.@NotNull Condition
RowN. in(Result<? extends Record> result)
Compare this row value expression with a set of records for equality.@NotNull Condition
Field. notIn(Result<? extends Record1<T>> result)
Create a condition to check this field against several values from a previous query.@NotNull Condition
Row1. notIn(Result<? extends Record1<T1>> result)
Compare this row value expression with a set of records for equality.@NotNull Condition
Row10. notIn(Result<? extends Record10<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10>> result)
Compare this row value expression with a set of records for equality.@NotNull Condition
Row11. notIn(Result<? extends Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>> result)
Compare this row value expression with a set of records for equality.@NotNull Condition
Row12. notIn(Result<? extends Record12<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12>> result)
Compare this row value expression with a set of records for equality.@NotNull Condition
Row13. notIn(Result<? extends Record13<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13>> result)
Compare this row value expression with a set of records for equality.@NotNull Condition
Row14. notIn(Result<? extends Record14<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14>> result)
Compare this row value expression with a set of records for equality.@NotNull Condition
Row15. notIn(Result<? extends Record15<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15>> result)
Compare this row value expression with a set of records for equality.@NotNull Condition
Row16. notIn(Result<? extends Record16<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16>> result)
Compare this row value expression with a set of records for equality.@NotNull Condition
Row17. notIn(Result<? extends Record17<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17>> result)
Compare this row value expression with a set of records for equality.@NotNull Condition
Row18. notIn(Result<? extends Record18<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18>> result)
Compare this row value expression with a set of records for equality.@NotNull Condition
Row19. notIn(Result<? extends Record19<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19>> result)
Compare this row value expression with a set of records for equality.@NotNull Condition
Row2. notIn(Result<? extends Record2<T1,T2>> result)
Compare this row value expression with a set of records for equality.@NotNull Condition
Row20. notIn(Result<? extends Record20<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20>> result)
Compare this row value expression with a set of records for equality.@NotNull Condition
Row21. notIn(Result<? extends Record21<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21>> result)
Compare this row value expression with a set of records for equality.@NotNull Condition
Row22. notIn(Result<? extends Record22<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21,T22>> result)
Compare this row value expression with a set of records for equality.@NotNull Condition
Row3. notIn(Result<? extends Record3<T1,T2,T3>> result)
Compare this row value expression with a set of records for equality.@NotNull Condition
Row4. notIn(Result<? extends Record4<T1,T2,T3,T4>> result)
Compare this row value expression with a set of records for equality.@NotNull Condition
Row5. notIn(Result<? extends Record5<T1,T2,T3,T4,T5>> result)
Compare this row value expression with a set of records for equality.@NotNull Condition
Row6. notIn(Result<? extends Record6<T1,T2,T3,T4,T5,T6>> result)
Compare this row value expression with a set of records for equality.@NotNull Condition
Row7. notIn(Result<? extends Record7<T1,T2,T3,T4,T5,T6,T7>> result)
Compare this row value expression with a set of records for equality.@NotNull Condition
Row8. notIn(Result<? extends Record8<T1,T2,T3,T4,T5,T6,T7,T8>> result)
Compare this row value expression with a set of records for equality.@NotNull Condition
Row9. notIn(Result<? extends Record9<T1,T2,T3,T4,T5,T6,T7,T8,T9>> result)
Compare this row value expression with a set of records for equality.@NotNull Condition
RowN. notIn(Result<? extends Record> result)
Compare this row value expression with a set of records for equality.void
ExecuteContext. result(Result<?> result)
Calling this has no effect. -
Uses of Result in org.jooq.impl
Fields in org.jooq.impl with type parameters of type Result Modifier and Type Field Description static DataType<Result<Record>>
SQLDataType. RESULT
TheResultSet
type.Methods in org.jooq.impl that return Result Modifier and Type Method Description Result<Record>
DefaultDSLContext. fetch(String sql)
Result<Record>
DefaultDSLContext. fetch(String sql, Object... bindings)
Result<Record>
DefaultDSLContext. fetch(String sql, QueryPart... parts)
Result<Record>
DefaultDSLContext. fetch(ResultSet rs)
Result<Record>
DefaultDSLContext. fetch(ResultSet rs, Class<?>... types)
Result<Record>
DefaultDSLContext. fetch(ResultSet rs, DataType<?>... types)
Result<Record>
DefaultDSLContext. fetch(ResultSet rs, Field<?>... fields)
<R extends Record>
Result<R>DefaultDSLContext. fetch(ResultQuery<R> query)
Result<Record>
DefaultDSLContext. fetch(SQL sql)
<R extends Record>
Result<R>DefaultDSLContext. fetch(Table<R> table)
<R extends Record>
Result<R>DefaultDSLContext. fetch(Table<R> table, Collection<? extends Condition> conditions)
<R extends Record>
Result<R>DefaultDSLContext. fetch(Table<R> table, Condition condition)
<R extends Record>
Result<R>DefaultDSLContext. fetch(Table<R> table, Condition... conditions)
<R extends TableRecord<R>>
Result<R>DefaultDSLContext. fetchByExample(R example)
<O extends TableRecord<O>>
Result<O>UpdatableRecordImpl. fetchChildren(ForeignKey<O,R> key)
Result<Record>
DefaultDSLContext. fetchFromCSV(String string)
Result<Record>
DefaultDSLContext. fetchFromCSV(String string, boolean header)
Result<Record>
DefaultDSLContext. fetchFromCSV(String string, boolean header, char delimiter)
Result<Record>
DefaultDSLContext. fetchFromCSV(String string, char delimiter)
Result<Record>
DefaultDSLContext. fetchFromHTML(String string)
Result<Record>
DefaultDSLContext. fetchFromJSON(String string)
Result<Record>
DefaultDSLContext. fetchFromStringData(String[]... strings)
Result<Record>
DefaultDSLContext. fetchFromStringData(List<String[]> strings)
Result<Record>
DefaultDSLContext. fetchFromStringData(List<String[]> strings, boolean header)
Result<Record>
DefaultDSLContext. fetchFromTXT(String string)
Result<Record>
DefaultDSLContext. fetchFromTXT(String string, String nullLiteral)
Result<Record>
DefaultDSLContext. fetchFromXML(String string)
Result<Record>
DefaultDSLContext. newResult(Collection<? extends Field<?>> fields)
Result<Record>
DefaultDSLContext. newResult(Field<?>... fields)
<T1> Result<Record1<T1>>
DefaultDSLContext. newResult(Field<T1> field1)
<T1,T2>
Result<Record2<T1,T2>>DefaultDSLContext. newResult(Field<T1> field1, Field<T2> field2)
<T1,T2,T3>
Result<Record3<T1,T2,T3>>DefaultDSLContext. newResult(Field<T1> field1, Field<T2> field2, Field<T3> field3)
<T1,T2,T3,T4>
Result<Record4<T1,T2,T3,T4>>DefaultDSLContext. newResult(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4)
<T1,T2,T3,T4,T5>
Result<Record5<T1,T2,T3,T4,T5>>DefaultDSLContext. newResult(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5)
<T1,T2,T3,T4,T5,T6>
Result<Record6<T1,T2,T3,T4,T5,T6>>DefaultDSLContext. newResult(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6)
<T1,T2,T3,T4,T5,T6,T7>
Result<Record7<T1,T2,T3,T4,T5,T6,T7>>DefaultDSLContext. newResult(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7)
<T1,T2,T3,T4,T5,T6,T7,T8>
Result<Record8<T1,T2,T3,T4,T5,T6,T7,T8>>DefaultDSLContext. newResult(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8)
<T1,T2,T3,T4,T5,T6,T7,T8,T9>
Result<Record9<T1,T2,T3,T4,T5,T6,T7,T8,T9>>DefaultDSLContext. newResult(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9)
<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10>
Result<Record10<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10>>DefaultDSLContext. newResult(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10)
<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>
Result<Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>>DefaultDSLContext. newResult(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11)
<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12>
Result<Record12<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12>>DefaultDSLContext. newResult(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12)
<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13>
Result<Record13<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13>>DefaultDSLContext. newResult(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13)
<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14>
Result<Record14<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14>>DefaultDSLContext. newResult(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14)
<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15>
Result<Record15<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15>>DefaultDSLContext. newResult(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15)
<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16>
Result<Record16<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16>>DefaultDSLContext. newResult(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16)
<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17>
Result<Record17<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17>>DefaultDSLContext. newResult(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17)
<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18>
Result<Record18<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18>>DefaultDSLContext. newResult(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17, Field<T18> field18)
<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19>
Result<Record19<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19>>DefaultDSLContext. newResult(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17, Field<T18> field18, Field<T19> field19)
<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20>
Result<Record20<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20>>DefaultDSLContext. newResult(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17, Field<T18> field18, Field<T19> field19, Field<T20> field20)
<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21>
Result<Record21<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21>>DefaultDSLContext. newResult(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17, Field<T18> field18, Field<T19> field19, Field<T20> field20, Field<T21> field21)
<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21,T22>
Result<Record22<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21,T22>>DefaultDSLContext. newResult(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17, Field<T18> field18, Field<T19> field19, Field<T20> field20, Field<T21> field21, Field<T22> field22)
<R extends Record>
Result<R>DefaultDSLContext. newResult(Table<R> table)
Methods in org.jooq.impl that return types with arguments of type Result Modifier and Type Method Description CompletionStage<Result<Record>>
DefaultDSLContext. fetchAsync(String sql)
CompletionStage<Result<Record>>
DefaultDSLContext. fetchAsync(String sql, Object... bindings)
CompletionStage<Result<Record>>
DefaultDSLContext. fetchAsync(String sql, QueryPart... parts)
CompletionStage<Result<Record>>
DefaultDSLContext. fetchAsync(ResultSet rs)
CompletionStage<Result<Record>>
DefaultDSLContext. fetchAsync(ResultSet rs, Class<?>... types)
CompletionStage<Result<Record>>
DefaultDSLContext. fetchAsync(ResultSet rs, DataType<?>... types)
CompletionStage<Result<Record>>
DefaultDSLContext. fetchAsync(ResultSet rs, Field<?>... fields)
CompletionStage<Result<Record>>
DefaultDSLContext. fetchAsync(Executor executor, String sql)
CompletionStage<Result<Record>>
DefaultDSLContext. fetchAsync(Executor executor, String sql, Object... bindings)
CompletionStage<Result<Record>>
DefaultDSLContext. fetchAsync(Executor executor, String sql, QueryPart... parts)
CompletionStage<Result<Record>>
DefaultDSLContext. fetchAsync(Executor executor, ResultSet rs)
CompletionStage<Result<Record>>
DefaultDSLContext. fetchAsync(Executor executor, ResultSet rs, Class<?>... types)
CompletionStage<Result<Record>>
DefaultDSLContext. fetchAsync(Executor executor, ResultSet rs, DataType<?>... types)
CompletionStage<Result<Record>>
DefaultDSLContext. fetchAsync(Executor executor, ResultSet rs, Field<?>... fields)
<R extends Record>
CompletionStage<Result<R>>DefaultDSLContext. fetchAsync(Executor executor, ResultQuery<R> query)
CompletionStage<Result<Record>>
DefaultDSLContext. fetchAsync(Executor executor, SQL sql)
<R extends Record>
CompletionStage<Result<R>>DefaultDSLContext. fetchAsync(Executor executor, Table<R> table)
<R extends Record>
CompletionStage<Result<R>>DefaultDSLContext. fetchAsync(Executor executor, Table<R> table, Collection<? extends Condition> conditions)
<R extends Record>
CompletionStage<Result<R>>DefaultDSLContext. fetchAsync(Executor executor, Table<R> table, Condition condition)
<R extends Record>
CompletionStage<Result<R>>DefaultDSLContext. fetchAsync(Executor executor, Table<R> table, Condition... conditions)
<R extends Record>
CompletionStage<Result<R>>DefaultDSLContext. fetchAsync(ResultQuery<R> query)
CompletionStage<Result<Record>>
DefaultDSLContext. fetchAsync(SQL sql)
<R extends Record>
CompletionStage<Result<R>>DefaultDSLContext. fetchAsync(Table<R> table)
<R extends Record>
CompletionStage<Result<R>>DefaultDSLContext. fetchAsync(Table<R> table, Collection<? extends Condition> conditions)
<R extends Record>
CompletionStage<Result<R>>DefaultDSLContext. fetchAsync(Table<R> table, Condition condition)
<R extends Record>
CompletionStage<Result<R>>DefaultDSLContext. fetchAsync(Table<R> table, Condition... conditions)
Methods in org.jooq.impl with parameters of type Result Modifier and Type Method Description static <R extends Record>
@NotNull Table<R>DSL. table(Result<R> result)
Use a previously obtained result as a newTable
that can be used in SQL statements throughDSL.values(RowN...)
. -
Uses of Result in org.jooq.tools.jdbc
Fields in org.jooq.tools.jdbc declared as Result Modifier and Type Field Description Result<?>
MockResult. data
The result data associated with this execution result.Methods in org.jooq.tools.jdbc with parameters of type Result Modifier and Type Method Description static MockDataProvider
Mock. of(Result<?> result)
Create a newMockDataProvider
that always returns the same result for all queries.Constructors in org.jooq.tools.jdbc with parameters of type Result Constructor Description MockResult(int rows, Result<?> data)
Create a newMockResult
.MockResultSet(Result<?> result)
MockResultSet(Result<?> result, int maxRows)
-
Uses of Result in org.jooq.util.aurorapostgres
Fields in org.jooq.util.aurorapostgres with type parameters of type Result Modifier and Type Field Description static DataType<Result<Record>>
AuroraPostgresDataType. REFCURSOR
Deprecated. -
Uses of Result in org.jooq.util.h2
Fields in org.jooq.util.h2 with type parameters of type Result Modifier and Type Field Description protected static DataType<Result<Record>>
H2DataType. __RESULT
Deprecated. -
Uses of Result in org.jooq.util.hsqldb
Fields in org.jooq.util.hsqldb with type parameters of type Result Modifier and Type Field Description static DataType<Result<Record>>
HSQLDBDataType. ROW
Deprecated. -
Uses of Result in org.jooq.util.oracle
Fields in org.jooq.util.oracle with type parameters of type Result Modifier and Type Field Description static DataType<Result<Record>>
OracleDataType. REF_CURSOR
Deprecated. -
Uses of Result in org.jooq.util.postgres
Fields in org.jooq.util.postgres with type parameters of type Result Modifier and Type Field Description static DataType<Result<Record>>
PostgresDataType. REFCURSOR
Deprecated. -
Uses of Result in org.jooq.util.redshift
Fields in org.jooq.util.redshift with type parameters of type Result Modifier and Type Field Description static DataType<Result<Record>>
RedshiftDataType. REFCURSOR
Deprecated. -
Uses of Result in org.jooq.util.vertica
Fields in org.jooq.util.vertica with type parameters of type Result Modifier and Type Field Description static DataType<Result<Record>>
VerticaDataType. ROW
Deprecated.
-