Uses of Class
io.vertx.reactivex.sqlclient.Row
-
Packages that use Row Package Description io.vertx.reactivex.jdbcclient io.vertx.reactivex.oracleclient io.vertx.reactivex.sqlclient io.vertx.reactivex.sqlclient.templates -
-
Uses of Row in io.vertx.reactivex.jdbcclient
Fields in io.vertx.reactivex.jdbcclient with type parameters of type Row Modifier and Type Field Description static PropertyKind<Row>
JDBCPool. GENERATED_KEYS
The property to be used to retrieve the generated keys -
Uses of Row in io.vertx.reactivex.oracleclient
Fields in io.vertx.reactivex.oracleclient with type parameters of type Row Modifier and Type Field Description static PropertyKind<Row>
OracleClient. GENERATED_KEYS
The property to be used to retrieve the generated keys -
Uses of Row in io.vertx.reactivex.sqlclient
Fields in io.vertx.reactivex.sqlclient with type parameters of type Row Modifier and Type Field Description static io.vertx.lang.rx.TypeArg<Row>
Row. __TYPE_ARG
Methods in io.vertx.reactivex.sqlclient that return Row Modifier and Type Method Description static Row
Row. newInstance(Row arg)
Methods in io.vertx.reactivex.sqlclient that return types with arguments of type Row Modifier and Type Method Description RowStream<Row>
PreparedStatement. createStream(int fetch)
LikePreparedStatement.createStream(int)
but with empty arguments.RowStream<Row>
PreparedStatement. createStream(int fetch, Tuple args)
Execute the prepared query with a cursor and createStream the result.PreparedQuery<RowSet<Row>>
Pool. preparedQuery(String sql)
A connection is borrowed from the connection pool when the query is executed and then immediately returned to the pool after it completes.PreparedQuery<RowSet<Row>>
SqlClient. preparedQuery(String sql)
Create a prepared query, one of theQuery.execute()
orPreparedQuery.executeBatch(java.util.List<io.vertx.reactivex.sqlclient.Tuple>)
methods must be called to execute the query.PreparedQuery<RowSet<Row>>
SqlClient. preparedQuery(String sql, PrepareOptions options)
Create a prepared query, one of theQuery.execute()
orPreparedQuery.executeBatch(java.util.List<io.vertx.reactivex.sqlclient.Tuple>)
methods must be called to execute the query.Query<RowSet<Row>>
Pool. query(String sql)
A connection is borrowed from the connection pool when the query is executed and then immediately returned to the pool after it completes.PreparedQuery<RowSet<Row>>
PreparedStatement. query()
Create a prepared query for this statement.Query<RowSet<Row>>
SqlClient. query(String sql)
Create a query, theQuery.execute()
method must be called to execute the query.Future<RowSet<Row>>
Cursor. read(int count)
Read rows from the cursor, the result is provided asynchronously to thehandler
.Single<RowSet<Row>>
Cursor. rxRead(int count)
Read rows from the cursor, the result is provided asynchronously to thehandler
.Method parameters in io.vertx.reactivex.sqlclient with type arguments of type Row Modifier and Type Method Description <U> PreparedQuery<RowSet<U>>
PreparedQuery. mapping(java.util.function.Function<Row,U> mapper)
<U> Query<RowSet<U>>
Query. mapping(java.util.function.Function<Row,U> mapper)
-
Uses of Row in io.vertx.reactivex.sqlclient.templates
Methods in io.vertx.reactivex.sqlclient.templates that return types with arguments of type Row Modifier and Type Method Description static SqlTemplate<Map<String,Object>,RowSet<Row>>
SqlTemplate. forQuery(SqlClient client, String template)
Create an SQL template for query purpose consuming map parameters and returning .Methods in io.vertx.reactivex.sqlclient.templates with parameters of type Row Modifier and Type Method Description T
RowMapper. map(Row row)
Build aT
representation of the givenrow
-