public class AsyncSQLClient extends SQLClient
original non RX-ified interface using Vert.x codegen.| Modifier and Type | Field and Description | 
|---|---|
static io.vertx.lang.rx.TypeArg<AsyncSQLClient> | 
__TYPE_ARG  | 
| Constructor and Description | 
|---|
AsyncSQLClient(AsyncSQLClient delegate)  | 
AsyncSQLClient(Object delegate)  | 
| Modifier and Type | Method and Description | 
|---|---|
boolean | 
equals(Object o)  | 
AsyncSQLClient | 
getDelegate()  | 
int | 
hashCode()  | 
static AsyncSQLClient | 
newInstance(AsyncSQLClient arg)  | 
SQLOperations | 
querySingle(String sql,
           Handler<AsyncResult<JsonArray>> handler)
Execute a one shot SQL statement that returns a single SQL row. 
 | 
SQLOperations | 
querySingleWithParams(String sql,
                     JsonArray arguments,
                     Handler<AsyncResult<JsonArray>> handler)
Execute a one shot SQL statement with arguments that returns a single SQL row. 
 | 
Maybe<JsonArray> | 
rxQuerySingle(String sql)
Execute a one shot SQL statement that returns a single SQL row. 
 | 
Maybe<JsonArray> | 
rxQuerySingleWithParams(String sql,
                       JsonArray arguments)
Execute a one shot SQL statement with arguments that returns a single SQL row. 
 | 
String | 
toString()  | 
call, callWithParams, close, close, getConnection, newInstance, query, queryStream, queryStreamWithParams, queryWithParams, rxCall, rxCallWithParams, rxClose, rxGetConnection, rxQuery, rxQueryStream, rxQueryStreamWithParams, rxQueryWithParams, rxUpdate, rxUpdateWithParams, update, updateWithParamsclone, finalize, getClass, notify, notifyAll, wait, wait, waitnewInstancepublic static final io.vertx.lang.rx.TypeArg<AsyncSQLClient> __TYPE_ARG
public AsyncSQLClient(AsyncSQLClient delegate)
public AsyncSQLClient(Object delegate)
public AsyncSQLClient getDelegate()
getDelegate in interface SQLOperationsgetDelegate in class SQLClientpublic SQLOperations querySingle(String sql, Handler<AsyncResult<JsonArray>> handler)
querySingle in interface SQLOperationsquerySingle in class SQLClientsql - the statement to executehandler - the result handlerpublic Maybe<JsonArray> rxQuerySingle(String sql)
rxQuerySingle in class SQLClientsql - the statement to executepublic SQLOperations querySingleWithParams(String sql, JsonArray arguments, Handler<AsyncResult<JsonArray>> handler)
querySingleWithParams in interface SQLOperationsquerySingleWithParams in class SQLClientsql - the statement to executearguments - the argumentshandler - the result handlerpublic Maybe<JsonArray> rxQuerySingleWithParams(String sql, JsonArray arguments)
rxQuerySingleWithParams in class SQLClientsql - the statement to executearguments - the argumentspublic static AsyncSQLClient newInstance(AsyncSQLClient arg)
Copyright © 2020 Eclipse. All rights reserved.