Uses of Class
io.vertx.rxjava.sqlclient.PreparedQuery
-
Packages that use PreparedQuery Package Description io.vertx.rxjava.sqlclient -
-
Uses of PreparedQuery in io.vertx.rxjava.sqlclient
Fields in io.vertx.rxjava.sqlclient with type parameters of type PreparedQuery Modifier and Type Field Description static TypeArg<PreparedQuery>
PreparedQuery. __TYPE_ARG
Methods in io.vertx.rxjava.sqlclient that return PreparedQuery Modifier and Type Method Description <U> PreparedQuery<RowSet<U>>
PreparedQuery. mapping(Function<Row,U> mapper)
static <T> PreparedQuery<T>
PreparedQuery. newInstance(io.vertx.sqlclient.PreparedQuery arg)
static <T> PreparedQuery<T>
PreparedQuery. newInstance(io.vertx.sqlclient.PreparedQuery arg, TypeArg<T> __typeArg_T)
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(io.vertx.core.Handler<io.vertx.core.AsyncResult<T>>)
orexecuteBatch(java.util.List<io.vertx.rxjava.sqlclient.Tuple>, io.vertx.core.Handler<io.vertx.core.AsyncResult<T>>)
methods must be called to execute the query.PreparedQuery<RowSet<Row>>
SqlClient. preparedQuery(String sql, io.vertx.sqlclient.PrepareOptions options)
Create a prepared query, one of theQuery.execute(io.vertx.core.Handler<io.vertx.core.AsyncResult<T>>)
orexecuteBatch(java.util.List<io.vertx.rxjava.sqlclient.Tuple>, io.vertx.core.Handler<io.vertx.core.AsyncResult<T>>)
methods must be called to execute the query.PreparedQuery<RowSet<Row>>
PreparedStatement. query()
Create a prepared query for this statement.
-