| Package | Description |
|---|---|
| io.vertx.ext.sql | |
| io.vertx.rxjava.ext.sql |
| Modifier and Type | Method and Description |
|---|---|
UpdateResult |
UpdateResult.setKeys(JsonArray keys) |
UpdateResult |
UpdateResult.setUpdated(int updated) |
| Modifier and Type | Method and Description |
|---|---|
static void |
UpdateResultConverter.fromJson(JsonObject json,
UpdateResult obj) |
static void |
UpdateResultConverter.toJson(UpdateResult obj,
JsonObject json) |
| Modifier and Type | Method and Description |
|---|---|
SQLConnection |
SQLConnection.update(String sql,
Handler<AsyncResult<UpdateResult>> resultHandler)
Executes the given SQL statement which may be an
INSERT, UPDATE, or DELETE
statement. |
SQLConnection |
SQLConnection.updateWithParams(String sql,
JsonArray params,
Handler<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
|
| Modifier and Type | Method and Description |
|---|---|
Observable<UpdateResult> |
SQLConnection.updateObservable(String sql)
Executes the given SQL statement which may be an
INSERT, UPDATE, or DELETE
statement. |
Observable<UpdateResult> |
SQLConnection.updateWithParamsObservable(String sql,
JsonArray params)
Executes the given prepared statement which may be an
INSERT, UPDATE, or DELETE
statement with the given parameters |
| Modifier and Type | Method and Description |
|---|---|
SQLConnection |
SQLConnection.update(String sql,
Handler<AsyncResult<UpdateResult>> resultHandler)
Executes the given SQL statement which may be an
INSERT, UPDATE, or DELETE
statement. |
SQLConnection |
SQLConnection.updateWithParams(String sql,
JsonArray params,
Handler<AsyncResult<UpdateResult>> resultHandler)
Executes the given prepared statement which may be an
INSERT, UPDATE, or DELETE
statement with the given parameters |
Copyright © 2016. All rights reserved.