Uses of Interface
io.vertx.sqlclient.PropertyKind
-
Packages that use PropertyKind Package Description io.vertx.jdbcclient io.vertx.mysqlclient io.vertx.oracleclient io.vertx.reactivex.sqlclient io.vertx.rxjava3.sqlclient io.vertx.sqlclient -
-
Uses of PropertyKind in io.vertx.jdbcclient
Fields in io.vertx.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.mysqlclient
Fields in io.vertx.mysqlclient declared as PropertyKind Modifier and Type Field Description static PropertyKind<Long>
MySQLClient. LAST_INSERTED_ID
SqlResultproperty kind
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.oracleclient
Fields in io.vertx.oracleclient declared as PropertyKind Modifier and Type Field Description static PropertyKind<Row>
OracleClient. GENERATED_KEYS
The property to be used to retrieve the generated keysstatic PropertyKind<Boolean>
OracleClient. OUTPUT
The property to be used to retrieve the output of the callable statement -
Uses of PropertyKind in io.vertx.reactivex.sqlclient
Methods in io.vertx.reactivex.sqlclient that return PropertyKind Modifier and Type Method Description PropertyKind
PropertyKind. getDelegate()
Methods in io.vertx.reactivex.sqlclient with parameters of type PropertyKind Modifier and Type Method Description static <T> PropertyKind<T>
PropertyKind. newInstance(PropertyKind arg)
static <T> PropertyKind<T>
PropertyKind. newInstance(PropertyKind arg, io.vertx.lang.rx.TypeArg<T> __typeArg_T)
Constructors in io.vertx.reactivex.sqlclient with parameters of type PropertyKind Constructor Description PropertyKind(PropertyKind delegate)
-
Uses of PropertyKind in io.vertx.rxjava3.sqlclient
Methods in io.vertx.rxjava3.sqlclient that return PropertyKind Modifier and Type Method Description PropertyKind
PropertyKind. getDelegate()
Methods in io.vertx.rxjava3.sqlclient with parameters of type PropertyKind Modifier and Type Method Description static <T> PropertyKind<T>
PropertyKind. newInstance(PropertyKind arg)
static <T> PropertyKind<T>
PropertyKind. newInstance(PropertyKind arg, io.vertx.lang.rx.TypeArg<T> __typeArg_T)
Constructors in io.vertx.rxjava3.sqlclient with parameters of type PropertyKind Constructor Description PropertyKind(PropertyKind delegate)
-
Uses of PropertyKind in io.vertx.sqlclient
Methods in io.vertx.sqlclient that return PropertyKind Modifier and Type Method Description static <T> PropertyKind<T>
PropertyKind. create(String name, Class<T> type)
Methods in io.vertx.sqlclient with parameters of type PropertyKind Modifier and Type Method Description <V> V
SqlResult. property(PropertyKind<V> propertyKind)
Get the specific property with the specifiedPropertyKind
.
-