Modifier and Type | Method and Description |
---|---|
ResultSet |
ResultSet.getNext()
Get the next result set
|
ResultSet |
ResultSet.setColumnNames(List<String> columnNames) |
ResultSet |
ResultSet.setNext(ResultSet next) |
ResultSet |
ResultSet.setOutput(io.vertx.core.json.JsonArray output) |
ResultSet |
ResultSet.setResults(List<io.vertx.core.json.JsonArray> results) |
Modifier and Type | Method and Description |
---|---|
static void |
ResultSetConverter.fromJson(io.vertx.core.json.JsonObject json,
ResultSet obj) |
ResultSet |
ResultSet.setNext(ResultSet next) |
static void |
ResultSetConverter.toJson(ResultSet obj,
io.vertx.core.json.JsonObject json) |
Modifier and Type | Method and Description |
---|---|
SQLConnection |
SQLConnection.call(String sql,
io.vertx.core.Handler<io.vertx.core.AsyncResult<ResultSet>> resultHandler)
Calls the given SQL
PROCEDURE which returns the result from the procedure. |
SQLConnection |
SQLConnection.callWithParams(String sql,
io.vertx.core.json.JsonArray params,
io.vertx.core.json.JsonArray outputs,
io.vertx.core.Handler<io.vertx.core.AsyncResult<ResultSet>> resultHandler)
Calls the given SQL
PROCEDURE which returns the result from the procedure. |
SQLConnection |
SQLConnection.query(String sql,
io.vertx.core.Handler<io.vertx.core.AsyncResult<ResultSet>> resultHandler)
Executes the given SQL
SELECT statement which returns the results of the query. |
SQLConnection |
SQLConnection.queryWithParams(String sql,
io.vertx.core.json.JsonArray params,
io.vertx.core.Handler<io.vertx.core.AsyncResult<ResultSet>> resultHandler)
Executes the given SQL
SELECT prepared statement which returns the results of the query. |
Constructor and Description |
---|
ResultSet(List<String> columnNames,
List<io.vertx.core.json.JsonArray> results,
ResultSet next)
Create a result-set
|
ResultSet(ResultSet other)
Copy constructor
|
Copyright © 2017. All rights reserved.