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
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclose()Close the client and release the associated resources.voidclose(io.vertx.core.Handler<io.vertx.core.AsyncResult<Void>> handler)Close the client and release the associated resources.booleanequals(Object o)io.vertx.sqlclient.SqlClientgetDelegate()inthashCode()static SqlClientnewInstance(io.vertx.sqlclient.SqlClient arg)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.PreparedQuery<RowSet<Row>>preparedQuery(String sql, io.vertx.sqlclient.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.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.io.reactivex.CompletablerxClose()Close the client and release the associated resources.StringtoString()
-
-
-
Constructor Detail
-
SqlClient
public SqlClient(io.vertx.sqlclient.SqlClient delegate)
-
SqlClient
public SqlClient(Object delegate)
-
-
Method Detail
-
getDelegate
public io.vertx.sqlclient.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, io.vertx.sqlclient.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(io.vertx.core.Handler<io.vertx.core.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:
-
newInstance
public static SqlClient newInstance(io.vertx.sqlclient.SqlClient arg)
-
-