Package io.vertx.reactivex.sqlclient
Class SqlClient
- java.lang.Object
-
- io.vertx.reactivex.sqlclient.SqlClient
-
- Direct Known Subclasses:
Pool,SqlConnection
public class SqlClient extends Object
Defines common SQL client operations with a database server. NOTE: This class has been automatically generated from theoriginalnon RX-ified interface using Vert.x codegen.
-
-
Field Summary
Fields Modifier and Type Field Description static TypeArg<SqlClient>__TYPE_ARG
-
Method Summary
-
-
-
Method Detail
-
getDelegate
public SqlClient getDelegate()
-
query
public Query<RowSet<Row>> query(String sql)
Create a query, theQuery.execute(io.vertx.core.Handler<io.vertx.core.AsyncResult<T>>)method must be called to execute the query.- Parameters:
sql-- Returns:
- the query
-
preparedQuery
public PreparedQuery<RowSet<Row>> preparedQuery(String sql)
Create a prepared query, one of theQuery.execute(io.vertx.core.Handler<io.vertx.core.AsyncResult<T>>)orPreparedQuery.executeBatch(java.util.List<io.vertx.reactivex.sqlclient.Tuple>, io.vertx.core.Handler<io.vertx.core.AsyncResult<T>>)methods must be called to execute the query.- Parameters:
sql-- Returns:
- the prepared query
-
preparedQuery
public PreparedQuery<RowSet<Row>> preparedQuery(String sql, PrepareOptions options)
Create a prepared query, one of theQuery.execute(io.vertx.core.Handler<io.vertx.core.AsyncResult<T>>)orPreparedQuery.executeBatch(java.util.List<io.vertx.reactivex.sqlclient.Tuple>, io.vertx.core.Handler<io.vertx.core.AsyncResult<T>>)methods must be called to execute the query.- Parameters:
sql-options-- Returns:
- the prepared query
-
close
public void close(Handler<AsyncResult<Void>> handler)
Close the client and release the associated resources.- Parameters:
handler- the completion handler
-
close
public void close()
Close the client and release the associated resources.
-
rxClose
public io.reactivex.Completable rxClose()
Close the client and release the associated resources.- Returns:
-
-