Uses of Interface
io.helidon.dbclient.DbRow
-
Packages that use DbRow Package Description io.helidon.dbclient Reactive Database API for Helidon.io.helidon.dbclient.jsonp JSON Processing support for Helidon DB.io.helidon.dbclient.mongodb Helidon DB integration for reactive mongoDB. -
-
Uses of DbRow in io.helidon.dbclient
Fields in io.helidon.dbclient with type parameters of type DbRow Modifier and Type Field Description static GenericType<DbRow>DbMapperManager. TYPE_DB_ROWGeneric type for theDbRowclass.Methods in io.helidon.dbclient that return types with arguments of type DbRow Modifier and Type Method Description default CompletionStage<Optional<DbRow>>DbExecute. get(String statement, Object... parameters)Create and execute a database query using a statement passed as an argument.default OptionalCompletionStage<DbRow>DbExecute. namedGet(String statementName, Object... parameters)Create and execute a database query using a statement defined in the configuration file.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.Methods in io.helidon.dbclient with parameters of type DbRow Modifier and Type Method Description TDbMapper. read(DbRow row)Read database row and convert it to target type instance.<T> TDbMapperManager. read(DbRow row, GenericType<T> expectedType)Read database row into a typed value.<T> TDbMapperManager. read(DbRow row, Class<T> expectedType)Read database row into a typed value.Method parameters in io.helidon.dbclient with type arguments of type DbRow Modifier and Type Method Description <T> TDbRow. as(Function<DbRow,T> mapper)Get specific class instance representation of this row.DbResultDbResult. whenRs(Consumer<DbRows<DbRow>> consumer)For query statements,DbRowsis provided as soon as the statement completes. -
Uses of DbRow in io.helidon.dbclient.jsonp
Methods in io.helidon.dbclient.jsonp with parameters of type DbRow Modifier and Type Method Description javax.json.JsonObjectJsonProcessingMapper. read(DbRow row)Get a JSON-P representation of this row. -
Uses of DbRow in io.helidon.dbclient.mongodb
Methods in io.helidon.dbclient.mongodb that return types with arguments of type DbRow Modifier and Type Method Description CompletionStage<Optional<DbRow>>MongoDbStatementGet. execute()
-