Uses of Class
io.vertx.reactivex.sqlclient.PreparedQuery
Packages that use PreparedQuery
-
Uses of PreparedQuery in io.vertx.reactivex.sqlclient
Fields in io.vertx.reactivex.sqlclient with type parameters of type PreparedQueryModifier and TypeFieldDescriptionstatic final io.vertx.lang.rx.TypeArg<PreparedQuery> PreparedQuery.__TYPE_ARGMethods in io.vertx.reactivex.sqlclient that return PreparedQueryModifier and TypeMethodDescription<U> PreparedQuery<RowSet<U>> static <T> PreparedQuery<T> PreparedQuery.newInstance(PreparedQuery arg) static <T> PreparedQuery<T> PreparedQuery.newInstance(PreparedQuery arg, io.vertx.lang.rx.TypeArg<T> __typeArg_T) 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.SqlClient.preparedQuery(String sql) Create a prepared query, one of theQuery.execute()orPreparedQuery.executeBatch(List)methods must be called to execute the query.SqlClient.preparedQuery(String sql, PrepareOptions options) Create a prepared query, one of theQuery.execute()orPreparedQuery.executeBatch(List)methods must be called to execute the query.PreparedStatement.query()Create a prepared query for this statement.