Uses of Class
io.vertx.mutiny.sqlclient.templates.SqlTemplate
Packages that use SqlTemplate
-
Uses of SqlTemplate in io.vertx.mutiny.sqlclient.templates
Fields in io.vertx.mutiny.sqlclient.templates with type parameters of type SqlTemplateMethods in io.vertx.mutiny.sqlclient.templates that return SqlTemplateModifier and TypeMethodDescriptionSqlTemplate.executeAndForget(I params) Execute the query with theparametersSqlTemplate.executeBatchAndForget(List<I> batch) Execute a batch query with thebatch.Create an SQL template for query purpose consuming map parameters and returningRow.Create an SQL template for query purpose consuming map parameters and returning void.<T> SqlTemplate<T,R> SqlTemplate.mapFrom(TupleMapper<T> mapper) Set a parameters user defined mapping function.<T> SqlTemplate<T,R> Set a parameters user defined class mapping.<U> SqlTemplate<I,RowSet<U>> Set a row user defined mapping function.<U> SqlTemplate<I,RowSet<U>> Set a row user defined mapping function.static <I,R> SqlTemplate<I, R> SqlTemplate.newInstance(io.vertx.sqlclient.templates.SqlTemplate<I, R> delegate) Creates a new instance of theSqlTemplate.static <I,R> SqlTemplate<I, R> SqlTemplate.newInstance(io.vertx.sqlclient.templates.SqlTemplate<I, R> delegate, TypeArg<I> typeArg_0, TypeArg<R> typeArg_1) Creates a new instance of theSqlTemplate.SqlTemplate.withClient(SqlClient client) Returns a new template, using the specifiedclient.