Uses of Class
org.jooq.exception.InvalidResultException
Package
Description
This package contains jOOQ's public API.
This package contains jOOQ's exceptions.
-
Uses of InvalidResultException in org.jooq
Modifier and TypeMethodDescriptionExecute the query and return aMap
with results grouped by the given key entity.<K,
V> @NotNull Map<K, V> Execute the query and return aMap
with results grouped by the given key entity and mapped into the given entity type.<K,
V> @NotNull Map<K, V> ResultQuery.fetchMap
(Class<? extends K> keyType, RecordMapper<? super R, V> valueMapper) Execute the query and return aMap
with results grouped by the given key entity and mapped into the given entity type.ResultQuery.fetchMap
(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.<K,
V> @NotNull Map<K, V> ResultQuery.fetchMap
(RecordMapper<? super R, K> keyMapper, Class<V> valueType) Execute the query and return aMap
with results grouped by the given key entity and mapped into the given entity type.<K,
V> @NotNull Map<K, V> ResultQuery.fetchMap
(RecordMapper<? super R, K> keyMapper, RecordMapper<? super R, V> valueMapper) Execute the query and return aMap
with results grouped by the given key entity and mapped into the given entity type.@NotNull Optional<?>
DSLContext.fetchOptionalValue
(String sql) Execute a new query holding plain SQL.@NotNull Optional<?>
DSLContext.fetchOptionalValue
(String sql, Object... bindings) Execute a new query holding plain SQL.@NotNull Optional<?>
DSLContext.fetchOptionalValue
(String sql, QueryPart... parts) Execute a new query holding plain SQL.@NotNull Optional<?>
DSLContext.fetchOptionalValue
(ResultSet rs) Fetch a record from a JDBCResultSet
and return the only contained value.<T> @NotNull Optional<T>
DSLContext.fetchOptionalValue
(ResultSet rs, Class<T> type) Fetch a record from a JDBCResultSet
and return the only contained value.<T> @NotNull Optional<T>
DSLContext.fetchOptionalValue
(ResultSet rs, DataType<T> type) Fetch a record from a JDBCResultSet
and return the only contained value.<T> @NotNull Optional<T>
DSLContext.fetchOptionalValue
(ResultSet rs, Field<T> field) Fetch a record from a JDBCResultSet
and return the only contained value.DSLContext.fetchOptionalValue
(ResultQuery<R> query) Execute aResultQuery
in the context of thisDSLContext
and return a single value.@NotNull Optional<?>
DSLContext.fetchOptionalValue
(SQL sql) Execute a new query holding plain SQL.<T> @NotNull Optional<T>
DSLContext.fetchOptionalValue
(TableField<?, T> field) Execute aResultQuery
in the context of thisDSLContext
and return a single value.<T> @NotNull Optional<T>
DSLContext.fetchOptionalValue
(TableField<?, T> field, Condition condition) Execute aResultQuery
in the context of thisDSLContext
and return a single value.@Nullable Object
DSLContext.fetchValue
(String sql) Execute a new query holding plain SQL.@Nullable Object
DSLContext.fetchValue
(String sql, Object... bindings) Execute a new query holding plain SQL.@Nullable Object
DSLContext.fetchValue
(String sql, QueryPart... parts) Execute a new query holding plain SQL.@Nullable Object
DSLContext.fetchValue
(ResultSet rs) Fetch a record from a JDBCResultSet
and return the only contained value.<T> T
DSLContext.fetchValue
(ResultSet rs, Class<T> type) Fetch a record from a JDBCResultSet
and return the only contained value.<T> T
DSLContext.fetchValue
(ResultSet rs, DataType<T> type) Fetch a record from a JDBCResultSet
and return the only contained value.<T> T
DSLContext.fetchValue
(ResultSet rs, Field<T> field) Fetch a record from a JDBCResultSet
and return the only contained value.@Nullable Object
DSLContext.fetchValue
(SQL sql) Execute a new query holding plain SQL.@NotNull List<?>
DSLContext.fetchValues
(String sql) Execute a new query holding plain SQL.@NotNull List<?>
DSLContext.fetchValues
(String sql, Object... bindings) Execute a new query holding plain SQL.@NotNull List<?>
DSLContext.fetchValues
(String sql, QueryPart... parts) Execute a new query holding plain SQL.@NotNull List<?>
DSLContext.fetchValues
(ResultSet rs) Fetch a result from a JDBCResultSet
and return the only contained column's values.<T> @NotNull List<T>
DSLContext.fetchValues
(ResultSet rs, Class<T> type) Fetch a result from a JDBCResultSet
and return the only contained column's values.<T> @NotNull List<T>
DSLContext.fetchValues
(ResultSet rs, DataType<T> type) Fetch a result from a JDBCResultSet
and return the only contained column's values.<T> @NotNull List<T>
DSLContext.fetchValues
(ResultSet rs, Field<T> field) Fetch a result from a JDBCResultSet
and return the only contained column's values.@NotNull List<?>
DSLContext.fetchValues
(SQL sql) Execute a new query holding plain SQL.Result.intoMap
(int keyFieldIndex) Return aMap
with one of the result's columns as key and the corresponding records as value.Result.intoMap
(int[] keyFieldIndexes) Return aMap
with the given keys as a map key and the corresponding record as value.Result.intoMap
(int[] keyFieldIndexes, int[] valueFieldIndexes) Return aMap
with the given keys as a map key and the corresponding record as value.Return aMap
with results grouped by the given keys and mapped into the given entity type.Result.intoMap
(int[] keyFieldIndexes, RecordMapper<? super R, E> mapper) Return aMap
with results grouped by the given keys and mapped by the given mapper.@NotNull Map<?,
?> Result.intoMap
(int keyFieldIndex, int valueFieldIndex) Return aMap
with one of the result's columns as key and another one of the result's columns as value<E> @NotNull Map<?,
E> Return aMap
with results grouped by the given key and mapped into the given entity type.<E> @NotNull Map<?,
E> Result.intoMap
(int keyFieldIndex, RecordMapper<? super R, E> mapper) Return aMap
with results grouped by the given key and mapped by the given mapper.Return aMap
with results grouped by the given key entity.<K,
V> @NotNull Map<K, V> Return aMap
with results grouped by the given key entity and mapped into the given entity type.<K,
V> @NotNull Map<K, V> Result.intoMap
(Class<? extends K> keyType, RecordMapper<? super R, V> valueMapper) Return aMap
with results grouped by the given key entity and mapped into the given entity type.Return aMap
with one of the result's columns as key and the corresponding records as value, usingFields.field(String)
for lookup.Return aMap
with the given keys as a map key and the corresponding record as value, usingFields.field(String)
for lookup.Return aMap
with results grouped by the given keys and mapped into the given entity type, usingFields.field(String)
for lookup.Return aMap
with the given keys as a map key and the corresponding record as value, usingFields.field(String)
for lookup.Result.intoMap
(String[] keyFieldNames, RecordMapper<? super R, E> mapper) Return aMap
with results grouped by the given keys and mapped by the given mapper, usingFields.field(String)
for lookup.<E> @NotNull Map<?,
E> Return aMap
with results grouped by the given key and mapped into the given entity type, usingFields.field(String)
for lookup.@NotNull Map<?,
?> Return aMap
with one of the result's columns as key and another one of the result's columns as value, usingFields.field(String)
for lookup.<E> @NotNull Map<?,
E> Result.intoMap
(String keyFieldName, RecordMapper<? super R, E> mapper) Return aMap
with results grouped by the given key and mapped by the given mapper, usingFields.field(String)
for lookup.Return aMap
with the given keys as a map key and the corresponding record as value, usingFields.field(Field)
for lookup.Return aMap
with results grouped by the given keys and mapped into the given entity type, usingFields.field(Field)
for lookup.Return aMap
with the given keys as a map key and the corresponding record as value, usingFields.field(Field)
for lookup.Result.intoMap
(Field<?>[] keys, RecordMapper<? super R, E> mapper) Return aMap
with results grouped by the given keys and mapped by the given mapper, usingFields.field(Field)
for lookup.Return aMap
with one of the result's columns as key and the corresponding records as value, usingFields.field(Field)
for lookup.<K,
E> @NotNull Map<K, E> Return aMap
with results grouped by the given key and mapped into the given entity type, usingFields.field(Field)
for lookup.<K,
V> @NotNull Map<K, V> Return aMap
with one of the result's columns as key and another one of the result's columns as value, usingFields.field(Field)
for lookup.<K,
E> @NotNull Map<K, E> Result.intoMap
(Field<K> key, RecordMapper<? super R, E> mapper) Return aMap
with results grouped by the given key and mapped by the given mapper, usingFields.field(Field)
for lookup.Return aMap
with one of the result's columns as key and the corresponding records as value, usingFields.field(Name)
for lookup.Return aMap
with the given keys as a map key and the corresponding record as value, usingFields.field(Name)
for lookup.Return aMap
with results grouped by the given keys and mapped into the given entity type, usingFields.field(Name)
for lookup.Return aMap
with the given keys as a map key and the corresponding record as value, usingFields.field(Name)
for lookup.Result.intoMap
(Name[] keyFieldNames, RecordMapper<? super R, E> mapper) Return aMap
with results grouped by the given keys and mapped by the given mapper, usingFields.field(Name)
for lookup.<E> @NotNull Map<?,
E> Return aMap
with results grouped by the given key and mapped into the given entity type, usingFields.field(Name)
for lookup.@NotNull Map<?,
?> Return aMap
with one of the result's columns as key and another one of the result's columns as value, usingFields.field(Name)
for lookup.<E> @NotNull Map<?,
E> Result.intoMap
(Name keyFieldName, RecordMapper<? super R, E> mapper) Return aMap
with results grouped by the given key and mapped by the given mapper, usingFields.field(Name)
for lookup.Result.intoMap
(RecordMapper<? super R, K> keyMapper) Return aMap
with results grouped by the given key entity and mapped into the given entity type.<K,
V> @NotNull Map<K, V> Result.intoMap
(RecordMapper<? super R, K> keyMapper, Class<V> valueType) Return aMap
with results grouped by the given key entity and mapped into the given entity type.<K,
V> @NotNull Map<K, V> Result.intoMap
(RecordMapper<? super R, K> keyMapper, RecordMapper<? super R, V> valueMapper) Return aMap
with results grouped by the given key entity and mapped into the given entity type.Return aMap
with the given key table as a map key and the corresponding record as value.Return aMap
with results grouped by the given key table and mapped into the given entity type.Result.intoMap
(Table<S> table, RecordMapper<? super R, E> mapper) Return aMap
with results grouped by the given key table and mapped by the given mapper.Return aMap
with the given key table as a map key and the corresponding record as value. -
Uses of InvalidResultException in org.jooq.exception
Modifier and TypeClassDescriptionclass
No rows were returned from aResultQuery
, when exactly one row was expected.class
Too many rows (more than 1) were returned from aResultQuery
.