Uses of Class
io.vertx.reactivex.sqlclient.PreparedStatement
-
-
Uses of PreparedStatement in io.vertx.reactivex.db2client
Methods in io.vertx.reactivex.db2client that return types with arguments of type PreparedStatement Modifier and Type Method Description io.reactivex.Single<PreparedStatement>
DB2Connection. rxPrepare(String sql)
Method parameters in io.vertx.reactivex.db2client with type arguments of type PreparedStatement Modifier and Type Method Description DB2Connection
DB2Connection. prepare(String sql, Handler<AsyncResult<PreparedStatement>> handler)
-
Uses of PreparedStatement in io.vertx.reactivex.mssqlclient
Methods in io.vertx.reactivex.mssqlclient that return types with arguments of type PreparedStatement Modifier and Type Method Description io.reactivex.Single<PreparedStatement>
MSSQLConnection. rxPrepare(String s)
Method parameters in io.vertx.reactivex.mssqlclient with type arguments of type PreparedStatement Modifier and Type Method Description MSSQLConnection
MSSQLConnection. prepare(String s, Handler<AsyncResult<PreparedStatement>> handler)
-
Uses of PreparedStatement in io.vertx.reactivex.mysqlclient
Methods in io.vertx.reactivex.mysqlclient that return types with arguments of type PreparedStatement Modifier and Type Method Description io.reactivex.Single<PreparedStatement>
MySQLConnection. rxPrepare(String sql)
Method parameters in io.vertx.reactivex.mysqlclient with type arguments of type PreparedStatement Modifier and Type Method Description MySQLConnection
MySQLConnection. prepare(String sql, Handler<AsyncResult<PreparedStatement>> handler)
-
Uses of PreparedStatement in io.vertx.reactivex.oracleclient
Methods in io.vertx.reactivex.oracleclient that return types with arguments of type PreparedStatement Modifier and Type Method Description io.reactivex.Single<PreparedStatement>
OracleConnection. rxPrepare(String s)
Method parameters in io.vertx.reactivex.oracleclient with type arguments of type PreparedStatement Modifier and Type Method Description OracleConnection
OracleConnection. prepare(String s, Handler<AsyncResult<PreparedStatement>> handler)
-
Uses of PreparedStatement in io.vertx.reactivex.pgclient
Methods in io.vertx.reactivex.pgclient that return types with arguments of type PreparedStatement Modifier and Type Method Description io.reactivex.Single<PreparedStatement>
PgConnection. rxPrepare(String sql)
Method parameters in io.vertx.reactivex.pgclient with type arguments of type PreparedStatement Modifier and Type Method Description PgConnection
PgConnection. prepare(String sql, Handler<AsyncResult<PreparedStatement>> handler)
-
Uses of PreparedStatement in io.vertx.reactivex.sqlclient
Fields in io.vertx.reactivex.sqlclient with type parameters of type PreparedStatement Modifier and Type Field Description static TypeArg<PreparedStatement>
PreparedStatement. __TYPE_ARG
Methods in io.vertx.reactivex.sqlclient that return PreparedStatement Modifier and Type Method Description static PreparedStatement
PreparedStatement. newInstance(PreparedStatement arg)
Methods in io.vertx.reactivex.sqlclient that return types with arguments of type PreparedStatement Modifier and Type Method Description io.reactivex.Single<PreparedStatement>
SqlConnection. rxPrepare(String sql)
Create a prepared statement using the givensql
string.io.reactivex.Single<PreparedStatement>
SqlConnection. rxPrepare(String sql, PrepareOptions options)
Create a prepared statement using the givensql
string.Method parameters in io.vertx.reactivex.sqlclient with type arguments of type PreparedStatement Modifier and Type Method Description SqlConnection
SqlConnection. prepare(String sql, Handler<AsyncResult<PreparedStatement>> handler)
Create a prepared statement using the givensql
string.SqlConnection
SqlConnection. prepare(String sql, PrepareOptions options, Handler<AsyncResult<PreparedStatement>> handler)
Create a prepared statement using the givensql
string.
-