Uses of Class
io.vertx.mutiny.sqlclient.PropertyKind
-
Packages that use PropertyKind Package Description io.vertx.mutiny.jdbcclient io.vertx.mutiny.mysqlclient io.vertx.mutiny.sqlclient -
-
Uses of PropertyKind in io.vertx.mutiny.jdbcclient
Fields in io.vertx.mutiny.jdbcclient declared as PropertyKind Modifier and Type Field Description static PropertyKind<Row>
JDBCPool. GENERATED_KEYS
The property to be used to retrieve the generated keysstatic PropertyKind<Boolean>
JDBCPool. OUTPUT
The property to be used to retrieve the output of the callable statement -
Uses of PropertyKind in io.vertx.mutiny.mysqlclient
Fields in io.vertx.mutiny.mysqlclient declared as PropertyKind Modifier and Type Field Description static PropertyKind<Long>
MySQLClient. LAST_INSERTED_ID
SqlResult for MySQL last_insert_id.
The property kind can be used to fetch the auto incremented id of the last row when executing inserting or updating operations. -
Uses of PropertyKind in io.vertx.mutiny.sqlclient
Fields in io.vertx.mutiny.sqlclient with type parameters of type PropertyKind Modifier and Type Field Description static TypeArg<PropertyKind>
PropertyKind. __TYPE_ARG
Methods in io.vertx.mutiny.sqlclient that return PropertyKind Modifier and Type Method Description static <T> PropertyKind<T>
PropertyKind. create(String name, Class<T> type)
static <T> PropertyKind<T>
PropertyKind. newInstance(io.vertx.sqlclient.PropertyKind arg)
static <T> PropertyKind<T>
PropertyKind. newInstance(io.vertx.sqlclient.PropertyKind arg, TypeArg<T> __typeArg_T)
Methods in io.vertx.mutiny.sqlclient with parameters of type PropertyKind Modifier and Type Method Description <V> V
SqlResult. property(PropertyKind<V> propertyKind)
-