public interface SqlClient
| Modifier and Type | Method and Description | 
|---|---|
void | 
close()
Close the client and release the associated resources. 
 | 
PreparedQuery<RowSet<Row>> | 
preparedQuery(String sql)
Create a prepared query, one of the  
PreparedQuery.execute(io.vertx.sqlclient.Tuple, io.vertx.core.Handler<io.vertx.core.AsyncResult<T>>) or PreparedQuery.executeBatch(java.util.List<io.vertx.sqlclient.Tuple>, io.vertx.core.Handler<io.vertx.core.AsyncResult<T>>)
 methods must be called to execute the query. | 
Query<RowSet<Row>> | 
query(String sql)
Create a query, the  
Query.execute(io.vertx.core.Handler<io.vertx.core.AsyncResult<T>>) method must be called to execute the query. | 
Query<RowSet<Row>> query(String sql)
Query.execute(io.vertx.core.Handler<io.vertx.core.AsyncResult<T>>) method must be called to execute the query.PreparedQuery<RowSet<Row>> preparedQuery(String sql)
PreparedQuery.execute(io.vertx.sqlclient.Tuple, io.vertx.core.Handler<io.vertx.core.AsyncResult<T>>) or PreparedQuery.executeBatch(java.util.List<io.vertx.sqlclient.Tuple>, io.vertx.core.Handler<io.vertx.core.AsyncResult<T>>)
 methods must be called to execute the query.void close()
Copyright © 2020 Eclipse. All rights reserved.