Uses of Interface
io.inverno.mod.sql.Row

  • Uses of Row in io.inverno.mod.sql

    Methods in io.inverno.mod.sql that return types with arguments of type Row
    Modifier and Type
    Method
    Description
    org.reactivestreams.Publisher<Row>
    SqlOperations.query(String sql, Object... args)
    Executes a query operation using a prepared statement with the specified arguments and returns the resulting rows.
    org.reactivestreams.Publisher<Row>
    SqlResult.rows()
    Returns the resulting rows.
    Method parameters in io.inverno.mod.sql with type arguments of type Row
    Modifier and Type
    Method
    Description
    <T> org.reactivestreams.Publisher<T>
    PreparedStatement.execute(Function<Row,T> rowMapper)
    Executes the statement, applies a row mapping function to the resulting rows and returns the results.
    <T> org.reactivestreams.Publisher<T>
    SqlOperations.query(String sql, Function<Row,T> rowMapper, Object... args)
    Executes a query operation using a prepared statement with the specified arguments, applies a row mapping function to the resulting rows and returns the results.
    <T> reactor.core.publisher.Mono<T>
    SqlOperations.queryForObject(String sql, Function<Row,T> rowMapper, Object... args)
    Executes a query operation using a prepared statement with the specified arguments, maps a single row to an object using a row mapping function and return that object.