LimitOffset

interface LimitOffset<T : Any> : SqlClientQuery.LimitOffset<ReactorSqlClientSelect.LimitOffset<T>> , ReactorSqlClientSelect.Return<T>

Functions

Link copied to clipboard
abstract fun fetchAll(): Flux<T>

This query returns several results as Flux, or an empty Flux if no result

Link copied to clipboard
abstract fun fetchFirst(): Mono<T>

This query returns the first result as Mono, or an empty Mono if no result

Link copied to clipboard
abstract fun fetchOne(): Mono<T>

This query returns one result as Mono, or an empty Mono if no result

Link copied to clipboard
abstract infix fun limit(limit: Long): ReactorSqlClientSelect.LimitOffset<T>
Link copied to clipboard
abstract infix fun offset(offset: Long): ReactorSqlClientSelect.LimitOffset<T>

Inheritors

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard