API Collection
SQLQueryFetcher Implementations
Topics
Instance Methods
func all(decoding:)Using a default-configuredSQLRowDecoder, returns all output rows, if any, decoded as a given type.func all<Model>(decoding: Model.Type) async throws -> [Model]Using a default-configuredSQLRowDecoder, returns all output rows, if any, decoded as a given type.func all<Model>(decoding: Model.Type) -> EventLoopFuture<[Model]>Using a default-configuredSQLRowDecoder, returns all output rows, if any, decoded as a given type.func first(decoding:)Using a default-configuredSQLRowDecoder, returns the first output row, if any, decoded as a given type.func first<Model>(decoding: Model.Type) async throws -> Model?Using a default-configuredSQLRowDecoder, returns the first output row, if any, decoded as a given type.func first<Model>(decoding: Model.Type) -> EventLoopFuture<Model?>Using a default-configuredSQLRowDecoder, returns the first output row, if any, decoded as a given type.