Uses of Class
org.jooq.exception.NoDataFoundException
Packages that use NoDataFoundException
-
Uses of NoDataFoundException in org.jooq
Methods in org.jooq that throw NoDataFoundExceptionModifier and TypeMethodDescriptionDSLContext.fetchOptional(ResultSet rs) @NotNull RecordDSLContext.fetchSingle(String sql) Execute a new query holding plain SQL.@NotNull RecordDSLContext.fetchSingle(String sql, Object... bindings) Execute a new query holding plain SQL.@NotNull RecordDSLContext.fetchSingle(String sql, QueryPart... parts) Execute a new query holding plain SQL.@NotNull RecordDSLContext.fetchSingle(ResultSet rs, Class<?>... types) @NotNull RecordDSLContext.fetchSingle(ResultSet rs, DataType<?>... types) @NotNull RecordDSLContext.fetchSingle(ResultSet rs, Field<?>... fields) <R extends Record>
RDSLContext.fetchSingle(ResultQuery<R> query) Execute aResultQueryin the context of thisDSLContextand return a record.@NotNull RecordDSLContext.fetchSingle(SQL sql) Execute a new query holding plain SQL.<R extends Record>
RDSLContext.fetchSingle(Table<R> table) Execute and return exactly one record for<R extends Record>
RDSLContext.fetchSingle(Table<R> table, Collection<? extends Condition> conditions) Execute and return exactly one record for<R extends Record>
RDSLContext.fetchSingle(Table<R> table, Condition condition) Execute and return exactly one record for<R extends Record>
RDSLContext.fetchSingle(Table<R> table, Condition... conditions) Execute and return exactly one record forResultQuery.fetchSingle()Execute the query and return exactly one resulting record.@Nullable ObjectResultQuery.fetchSingle(int fieldIndex) Execute the query and return exactly one resulting value for a field index from the generated result.<U> UResultQuery.fetchSingle(int fieldIndex, Class<? extends U> type) Execute the query and return exactly one resulting value for a field index from the generated result.<U> UResultQuery.fetchSingle(int fieldIndex, Converter<?, ? extends U> converter) Execute the query and return exactly one resulting value for a field index from the generated result.@Nullable ObjectResultQuery.fetchSingle(String fieldName) Execute the query and return exactly one resulting value for a field name from the generated result.<U> UResultQuery.fetchSingle(String fieldName, Class<? extends U> type) Execute the query and return exactly one resulting value for a field name from the generated result.<U> UResultQuery.fetchSingle(String fieldName, Converter<?, ? extends U> converter) Execute the query and return exactly one resulting value for a field name from the generated result.<U> UResultQuery.fetchSingle(Field<?> field, Class<? extends U> type) Execute the query and return exactly one resulting value for a field from the generated result.<T> TResultQuery.fetchSingle(Field<T> field) Execute the query and return exactly one resulting value for a field from the generated result.<T,U> U ResultQuery.fetchSingle(Field<T> field, Converter<? super T, ? extends U> converter) Execute the query and return exactly one resulting value for a field from the generated result.@Nullable ObjectResultQuery.fetchSingle(Name fieldName) Execute the query and return exactly one resulting value for a field name from the generated result.<U> UResultQuery.fetchSingle(Name fieldName, Class<? extends U> type) Execute the query and return exactly one resulting value for a field name from the generated result.<U> UResultQuery.fetchSingle(Name fieldName, Converter<?, ? extends U> converter) Execute the query and return exactly one resulting value for a field name from the generated result.<E> EResultQuery.fetchSingle(RecordMapper<? super R, E> mapper) Execute the query and return exactly one resulting value into a custom mapper callback.@Nullable Object @NotNull []ResultQuery.fetchSingleArray()Execute the query and return exactly one resulting record as an array<E> EResultQuery.fetchSingleInto(Class<? extends E> type) Map resulting records onto a custom type.<Z extends Record>
ZResultQuery.fetchSingleInto(Table<Z> table) Map resulting records onto a custom record.ResultQuery.fetchSingleMap()Execute the query and return exactly one resulting record as a name/value map.voidUpdatableRecord.refresh(Collection<? extends Field<?>> fields) Refresh parts of this record from the database.voidRefresh parts of this record from the database.