Uses of Class
io.vertx.mutiny.sqlclient.Tuple
-
Packages that use Tuple Package Description io.vertx.mutiny.sqlclient io.vertx.mutiny.sqlclient.templates -
-
Uses of Tuple in io.vertx.mutiny.sqlclient
Subclasses of Tuple in io.vertx.mutiny.sqlclient Modifier and Type Class Description class
Row
A single row of theexecution result rowset
.Fields in io.vertx.mutiny.sqlclient with type parameters of type Tuple Modifier and Type Field Description static TypeArg<Tuple>
Tuple. __TYPE_ARG
Methods in io.vertx.mutiny.sqlclient that return Tuple Modifier and Type Method Description Tuple
Tuple. addArrayOfBigDecimal(BigDecimal[] value)
Tuple
Tuple. addArrayOfBoolean(Boolean[] value)
Tuple
Tuple. addArrayOfDouble(Double[] value)
Tuple
Tuple. addArrayOfFloat(Float[] value)
Tuple
Tuple. addArrayOfInteger(Integer[] value)
Tuple
Tuple. addArrayOfJsonArray(io.vertx.core.json.JsonArray[] value)
Tuple
Tuple. addArrayOfJsonObject(io.vertx.core.json.JsonObject[] value)
Tuple
Tuple. addArrayOfLocalDate(LocalDate[] value)
Tuple
Tuple. addArrayOfLocalDateTime(LocalDateTime[] value)
Tuple
Tuple. addArrayOfLocalTime(LocalTime[] value)
Tuple
Tuple. addArrayOfLong(Long[] value)
Tuple
Tuple. addArrayOfOffsetDateTime(OffsetDateTime[] value)
Tuple
Tuple. addArrayOfOffsetTime(OffsetTime[] value)
Tuple
Tuple. addArrayOfShort(Short[] value)
Tuple
Tuple. addArrayOfString(String[] value)
Tuple
Tuple. addArrayOfTemporal(Temporal[] value)
Tuple
Tuple. addArrayOfUUID(UUID[] value)
Tuple
Tuple. addBigDecimal(BigDecimal value)
Tuple
Tuple. addBoolean(Boolean value)
Tuple
Tuple. addBuffer(Buffer value)
Tuple
Tuple. addDouble(Double value)
Tuple
Tuple. addFloat(Float value)
Tuple
Tuple. addInteger(Integer value)
Tuple
Tuple. addJsonArray(io.vertx.core.json.JsonArray value)
Tuple
Tuple. addJsonObject(io.vertx.core.json.JsonObject value)
Tuple
Tuple. addLocalDate(LocalDate value)
Tuple
Tuple. addLocalDateTime(LocalDateTime value)
Tuple
Tuple. addLocalTime(LocalTime value)
Tuple
Tuple. addLong(Long value)
Tuple
Tuple. addOffsetDateTime(OffsetDateTime value)
Tuple
Tuple. addOffsetTime(OffsetTime value)
Tuple
Tuple. addShort(Short value)
Tuple
Tuple. addString(String value)
Tuple
Tuple. addTemporal(Temporal value)
Tuple
Tuple. addUUID(UUID value)
Tuple
Tuple. addValue(Object value)
static Tuple
Tuple. from(Object[] array)
static <T> Tuple
Tuple. from(List<T> list)
static Tuple
Tuple. newInstance(io.vertx.sqlclient.Tuple arg)
static Tuple
Tuple. of(Object elt1)
static Tuple
Tuple. of(Object elt1, Object elt2)
static Tuple
Tuple. of(Object elt1, Object elt2, Object elt3)
static Tuple
Tuple. of(Object elt1, Object elt2, Object elt3, Object elt4)
static Tuple
Tuple. of(Object elt1, Object elt2, Object elt3, Object elt4, Object elt5)
static Tuple
Tuple. of(Object elt1, Object elt2, Object elt3, Object elt4, Object elt5, Object elt6)
static Tuple
Tuple. tuple()
static Tuple
Tuple. tuple(List<Object> elements)
static Tuple
Tuple. wrap(Object[] array)
static <T> Tuple
Tuple. wrap(List<T> list)
Methods in io.vertx.mutiny.sqlclient with parameters of type Tuple Modifier and Type Method Description RowStream<Row>
PreparedStatement. createStream(int fetch, Tuple args)
Cursor
PreparedStatement. cursor(Tuple args)
io.smallrye.mutiny.Uni<T>
PreparedQuery. execute(Tuple tuple)
Execute the query.T
PreparedQuery. executeAndAwait(Tuple tuple)
Blocking variant ofPreparedQuery.execute(io.vertx.mutiny.sqlclient.Tuple)
.void
PreparedQuery. executeAndForget(Tuple tuple)
Variant ofPreparedQuery.execute(io.vertx.mutiny.sqlclient.Tuple)
that ignores the result of the operation.Method parameters in io.vertx.mutiny.sqlclient with type arguments of type Tuple Modifier and Type Method Description io.smallrye.mutiny.Uni<T>
PreparedQuery. executeBatch(List<Tuple> batch)
Execute the query with a batch of tuples.T
PreparedQuery. executeBatchAndAwait(List<Tuple> batch)
Blocking variant ofio.vertx.mutiny.sqlclient.PreparedQuery#executeBatch(List
.) void
PreparedQuery. executeBatchAndForget(List<Tuple> batch)
Variant ofio.vertx.mutiny.sqlclient.PreparedQuery#executeBatch(List
that ignores the result of the operation.) -
Uses of Tuple in io.vertx.mutiny.sqlclient.templates
Methods in io.vertx.mutiny.sqlclient.templates that return Tuple Modifier and Type Method Description Tuple
TupleMapper. map(Function<Integer,String> mapping, int size, T params)
-