Uses of Interface
io.vertx.sqlclient.Row
Packages that use Row
Package
Description
-
Uses of Row in io.vertx.jdbcclient
Fields in io.vertx.jdbcclient with type parameters of type RowModifier and TypeFieldDescriptionstatic final PropertyKind<Row> JDBCPool.GENERATED_KEYSDeprecated.Methods in io.vertx.jdbcclient that return types with arguments of type Row -
Uses of Row in io.vertx.oracleclient
Fields in io.vertx.oracleclient with type parameters of type RowModifier and TypeFieldDescriptionstatic final PropertyKind<Row> OracleClient.GENERATED_KEYSThe property to be used to retrieve the generated keys -
Uses of Row in io.vertx.reactivex.sqlclient
Methods in io.vertx.reactivex.sqlclient that return RowMethods in io.vertx.reactivex.sqlclient with parameters of type RowConstructors in io.vertx.reactivex.sqlclient with parameters of type Row -
Uses of Row in io.vertx.rxjava3.sqlclient
Methods in io.vertx.rxjava3.sqlclient that return RowMethods in io.vertx.rxjava3.sqlclient with parameters of type RowConstructors in io.vertx.rxjava3.sqlclient with parameters of type Row -
Uses of Row in io.vertx.sqlclient
Methods in io.vertx.sqlclient that return types with arguments of type RowModifier and TypeMethodDescriptionPreparedStatement.createStream(int fetch) LikePreparedStatement.createStream(int, Tuple)but with empty arguments.PreparedStatement.createStream(int fetch, Tuple args) Execute the prepared query with a cursor and createStream the result.Pool.preparedQuery(String sql) Create a prepared query, one of thePreparedQuery.execute(Tuple)orPreparedQuery.executeBatch(List)methods must be called to execute the query.SqlClient.preparedQuery(String sql) Create a prepared query, one of thePreparedQuery.execute(Tuple)orPreparedQuery.executeBatch(List)methods must be called to execute the query.SqlClient.preparedQuery(String sql, PrepareOptions options) Create a prepared query, one of thePreparedQuery.execute(Tuple)orPreparedQuery.executeBatch(List)methods must be called to execute the query.Create a query, theQuery.execute()method must be called to execute the query.PreparedStatement.query()Create a prepared query for this statement.Create a query, theQuery.execute()method must be called to execute the query.Cursor.read(int count) Read rows from the cursor, the result is provided asynchronously to thehandler.Method parameters in io.vertx.sqlclient with type arguments of type RowModifier and TypeMethodDescription<R> PreparedQuery<SqlResult<R>> PreparedQuery.collecting(Collector<Row, ?, R> collector) Use the specifiedcollectorfor collecting the query result to<R>.Query.collecting(Collector<Row, ?, R> collector) Use the specifiedcollectorfor collecting the query result to<R>.<U> PreparedQuery<RowSet<U>> -
Uses of Row in io.vertx.sqlclient.spi.protocol
Methods in io.vertx.sqlclient.spi.protocol that return types with arguments of type RowMethod parameters in io.vertx.sqlclient.spi.protocol with type arguments of type RowModifier and TypeMethodDescriptionstatic <R> ExtendedQueryCommand<R> ExtendedQueryCommand.createBatch(String sql, PrepareOptions options, io.vertx.sqlclient.internal.PreparedStatement ps, List<Tuple> tuples, boolean autoCommit, Collector<Row, ?, R> collector, io.vertx.sqlclient.internal.QueryResultHandler<R> resultHandler) static <R> ExtendedQueryCommand<R> ExtendedQueryCommand.createQuery(String sql, PrepareOptions options, io.vertx.sqlclient.internal.PreparedStatement ps, Tuple tuple, boolean autoCommit, Collector<Row, ?, R> collector, io.vertx.sqlclient.internal.QueryResultHandler<R> resultHandler) static <R> ExtendedQueryCommand<R> ExtendedQueryCommand.createQuery(String sql, PrepareOptions options, io.vertx.sqlclient.internal.PreparedStatement ps, Tuple tuple, int fetch, String cursorId, boolean suspended, boolean autoCommit, Collector<Row, ?, R> collector, io.vertx.sqlclient.internal.QueryResultHandler<R> resultHandler) Constructor parameters in io.vertx.sqlclient.spi.protocol with type arguments of type Row -
Uses of Row in io.vertx.sqlclient.templates
Methods in io.vertx.sqlclient.templates that return types with arguments of type RowModifier and TypeMethodDescriptionCreate an SQL template for query purpose consuming map parameters and returningRow.Methods in io.vertx.sqlclient.templates with parameters of type RowModifier and TypeMethodDescriptionBuild aTrepresentation of the givenrowMethod parameters in io.vertx.sqlclient.templates with type arguments of type RowModifier and TypeMethodDescription<U> SqlTemplate<I, SqlResult<U>> SqlTemplate.collecting(Collector<Row, ?, U> collector) Set a collector that will process the output and produce a custom result.