Modifier and Type | Method and Description |
---|---|
UpdateResult |
UpdateResult.setKeys(io.vertx.core.json.JsonArray keys) |
UpdateResult |
UpdateResult.setUpdated(int updated) |
Modifier and Type | Method and Description |
---|---|
static void |
UpdateResultConverter.fromJson(Iterable<Map.Entry<String,Object>> json,
UpdateResult obj) |
static void |
UpdateResultConverter.toJson(UpdateResult obj,
io.vertx.core.json.JsonObject json) |
static void |
UpdateResultConverter.toJson(UpdateResult obj,
Map<String,Object> json) |
Modifier and Type | Method and Description |
---|---|
default SQLClient |
SQLClient.update(String sql,
io.vertx.core.Handler<io.vertx.core.AsyncResult<UpdateResult>> handler)
Executes the given SQL statement which may be an
INSERT , UPDATE , or DELETE
statement. |
SQLConnection |
SQLConnection.update(String sql,
io.vertx.core.Handler<io.vertx.core.AsyncResult<UpdateResult>> resultHandler)
Executes the given SQL statement which may be an
INSERT , UPDATE , or DELETE
statement. |
SQLOperations |
SQLOperations.update(String sql,
io.vertx.core.Handler<io.vertx.core.AsyncResult<UpdateResult>> resultHandler)
Executes the given SQL statement which may be an
INSERT , UPDATE , or DELETE
statement. |
default SQLClient |
SQLClient.updateWithParams(String sql,
io.vertx.core.json.JsonArray params,
io.vertx.core.Handler<io.vertx.core.AsyncResult<UpdateResult>> handler)
Executes the given prepared statement which may be an
INSERT , UPDATE , or DELETE
statement with the given parameters |
SQLConnection |
SQLConnection.updateWithParams(String sql,
io.vertx.core.json.JsonArray params,
io.vertx.core.Handler<io.vertx.core.AsyncResult<UpdateResult>> resultHandler)
Executes the given prepared statement which may be an
INSERT , UPDATE , or DELETE
statement with the given parameters |
SQLOperations |
SQLOperations.updateWithParams(String sql,
io.vertx.core.json.JsonArray params,
io.vertx.core.Handler<io.vertx.core.AsyncResult<UpdateResult>> resultHandler)
Executes the given prepared statement which may be an
INSERT , UPDATE , or DELETE
statement with the given parameters |
Constructor and Description |
---|
UpdateResult(UpdateResult other)
Copy constructor
|
Copyright © 2019 Eclipse. All rights reserved.