Uses of Interface
io.helidon.dbclient.DbResult
-
Packages that use DbResult Package Description io.helidon.dbclient Reactive Database API for Helidon.io.helidon.dbclient.mongodb Helidon DB integration for reactive mongoDB. -
-
Uses of DbResult in io.helidon.dbclient
Methods in io.helidon.dbclient that return DbResult Modifier and Type Method Description DbResultDbResult. exceptionally(Consumer<Throwable> exceptionHandler)In case any exception occurs during processing, the handler is invoked.DbResultDbResult. whenDml(Consumer<Long> consumer)For DML statements, number of changed rows/objects is provided as soon as the statement completes.DbResultDbResult. whenRs(Consumer<DbRows<DbRow>> consumer)For query statements,DbRowsis provided as soon as the statement completes.Methods in io.helidon.dbclient that return types with arguments of type DbResult Modifier and Type Method Description default CompletionStage<DbResult>DbExecute. namedStatement(String statementName, Object... parameters)Create and execute common statement using a statement defined in the configuration file.default CompletionStage<DbResult>DbExecute. statement(String statement, Object... parameters)Create and execute common statement using a statement passed as an argument. -
Uses of DbResult in io.helidon.dbclient.mongodb
Methods in io.helidon.dbclient.mongodb that return types with arguments of type DbResult Modifier and Type Method Description protected CompletionStage<DbResult>MongoDbStatementGeneric. doExecute(CompletionStage<DbInterceptorContext> dbContextFuture, CompletableFuture<Void> statementFuture, CompletableFuture<Long> queryFuture)CompletionStage<DbResult>MongoDbStatementGeneric. execute()
-