Uses of Interface
io.helidon.dbclient.DbRows
-
Packages that use DbRows Package Description io.helidon.dbclient Reactive Database API for Helidon.io.helidon.dbclient.mongodb Helidon DB integration for reactive mongoDB. -
-
Uses of DbRows in io.helidon.dbclient
Methods in io.helidon.dbclient that return DbRows Modifier and Type Method Description <U> DbRows<U>DbRows. map(GenericType<U> type)Map this row result using a configuredMapperthat can map current type to the desired type.<U> DbRows<U>DbRows. map(Class<U> type)Map this row result using a configuredMapperthat can map current type to the desired type.<U> DbRows<U>DbRows. map(Function<T,U> mapper)Map this row result using a mapping function.Methods in io.helidon.dbclient that return types with arguments of type DbRows Modifier and Type Method Description default CompletionStage<DbRows<DbRow>>DbExecute. namedQuery(String statementName, Object... parameters)Create and execute a database query using a statement defined in the configuration file.default CompletionStage<DbRows<DbRow>>DbExecute. query(String statement, Object... parameters)Create and execute a database query using a statement passed as an argument.CompletionStage<DbRows<DbRow>>DbResult. rsFuture()This future completes if (and only if) the statement was a query statement.Method parameters in io.helidon.dbclient with type arguments of type DbRows Modifier and Type Method Description DbResultDbResult. whenRs(Consumer<DbRows<DbRow>> consumer)For query statements,DbRowsis provided as soon as the statement completes. -
Uses of DbRows in io.helidon.dbclient.mongodb
Classes in io.helidon.dbclient.mongodb that implement DbRows Modifier and Type Class Description classMongoDbRows<T>Mongo specific execution result containing result set with multiple rows.Methods in io.helidon.dbclient.mongodb that return DbRows Modifier and Type Method Description <U> DbRows<U>MongoDbRows. map(GenericType<U> type)<U> DbRows<U>MongoDbRows. map(Class<U> type)<U> DbRows<U>MongoDbRows. map(Function<T,U> mapper)
-