| Package | Description |
|---|---|
| io.vertx.ext.sql | |
| io.vertx.rxjava.ext.sql |
| Modifier and Type | Method and Description |
|---|---|
ResultSet |
ResultSet.setColumnNames(List<String> columnNames) |
ResultSet |
ResultSet.setOutput(JsonArray output) |
ResultSet |
ResultSet.setResults(List<JsonArray> results) |
| Modifier and Type | Method and Description |
|---|---|
static void |
ResultSetConverter.fromJson(JsonObject json,
ResultSet obj) |
static void |
ResultSetConverter.toJson(ResultSet obj,
JsonObject json) |
| Modifier and Type | Method and Description |
|---|---|
SQLConnection |
SQLConnection.call(String sql,
Handler<AsyncResult<ResultSet>> resultHandler)
Calls the given SQL
PROCEDURE which returns the result from the procedure. |
SQLConnection |
SQLConnection.callWithParams(String sql,
JsonArray params,
JsonArray outputs,
Handler<AsyncResult<ResultSet>> resultHandler)
Calls the given SQL
PROCEDURE which returns the result from the procedure. |
SQLConnection |
SQLConnection.query(String sql,
Handler<AsyncResult<ResultSet>> resultHandler)
Executes the given SQL
SELECT statement which returns the results of the query. |
SQLConnection |
SQLConnection.queryWithParams(String sql,
JsonArray params,
Handler<AsyncResult<ResultSet>> resultHandler)
Executes the given SQL
SELECT prepared statement which returns the results of the query. |
| Constructor and Description |
|---|
ResultSet(ResultSet other)
Copy constructor
|
| Modifier and Type | Method and Description |
|---|---|
Observable<ResultSet> |
SQLConnection.callObservable(String sql)
Calls the given SQL
PROCEDURE which returns the result from the procedure. |
Observable<ResultSet> |
SQLConnection.callWithParamsObservable(String sql,
JsonArray params,
JsonArray outputs)
Calls the given SQL
PROCEDURE which returns the result from the procedure. |
Observable<ResultSet> |
SQLConnection.queryObservable(String sql)
Executes the given SQL
SELECT statement which returns the results of the query. |
Observable<ResultSet> |
SQLConnection.queryWithParamsObservable(String sql,
JsonArray params)
Executes the given SQL
SELECT prepared statement which returns the results of the query. |
| Modifier and Type | Method and Description |
|---|---|
SQLConnection |
SQLConnection.call(String sql,
Handler<AsyncResult<ResultSet>> resultHandler)
Calls the given SQL
PROCEDURE which returns the result from the procedure. |
SQLConnection |
SQLConnection.callWithParams(String sql,
JsonArray params,
JsonArray outputs,
Handler<AsyncResult<ResultSet>> resultHandler)
Calls the given SQL
PROCEDURE which returns the result from the procedure. |
SQLConnection |
SQLConnection.query(String sql,
Handler<AsyncResult<ResultSet>> resultHandler)
Executes the given SQL
SELECT statement which returns the results of the query. |
SQLConnection |
SQLConnection.queryWithParams(String sql,
JsonArray params,
Handler<AsyncResult<ResultSet>> resultHandler)
Executes the given SQL
SELECT prepared statement which returns the results of the query. |
Copyright © 2016. All rights reserved.