Uses of Interface
io.helidon.dbclient.DbRow

Packages that use DbRow
Package
Description
Helidon Database Client API.
  • Uses of DbRow in io.helidon.dbclient

    Classes in io.helidon.dbclient that implement DbRow
    Modifier and Type
    Class
    Description
    class 
    Base DbRow implementation.
    Fields in io.helidon.dbclient with type parameters of type DbRow
    Modifier and Type
    Field
    Description
    static final io.helidon.common.GenericType<DbRow>
    DbMapperManager.TYPE_DB_ROW
    Generic type for the DbRow class.
    Methods in io.helidon.dbclient that return types with arguments of type DbRow
    Modifier and Type
    Method
    Description
    DbStatementGet.execute()
    Execute this statement using the parameters configured with params and addParams methods.
    DbStatementQuery.execute()
    Execute this statement using the parameters configured with params and addParams methods.
    default Optional<DbRow>
    DbExecute.get(String statement, Object... parameters)
    Create and execute a database query using a statement passed as an argument.
    default Optional<DbRow>
    DbExecute.namedGet(String statementName, Object... parameters)
    Create and execute a database query using a statement defined in the configuration file.
    default Stream<DbRow>
    DbExecute.namedQuery(String statementName, Object... parameters)
    Create and execute a database query using a statement defined in the configuration file.
    default Stream<DbRow>
    DbExecute.query(String statement, Object... parameters)
    Create and execute a database query using a statement passed as an argument.
    Methods in io.helidon.dbclient with parameters of type DbRow
    Modifier and Type
    Method
    Description
    DbMapper.read(DbRow row)
    Read database row and convert it to target type instance.
    <T> T
    DbMapperManager.read(DbRow row, io.helidon.common.GenericType<T> expectedType)
    Read database row into a typed value.
    <T> T
    DbMapperManager.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> T
    DbRow.as(Function<DbRow,T> mapper)
    Get specific class instance representation of this row.
    <T> T
    DbRowBase.as(Function<DbRow,T> mapper)