Uses of Class
io.vertx.rxjava.mssqlclient.MSSQLConnection
-
Packages that use MSSQLConnection Package Description io.vertx.rxjava.mssqlclient -
-
Uses of MSSQLConnection in io.vertx.rxjava.mssqlclient
Fields in io.vertx.rxjava.mssqlclient with type parameters of type MSSQLConnection Modifier and Type Field Description static TypeArg<MSSQLConnection>
MSSQLConnection. __TYPE_ARG
Methods in io.vertx.rxjava.mssqlclient that return MSSQLConnection Modifier and Type Method Description static MSSQLConnection
MSSQLConnection. cast(SqlConnection sqlConnection)
Cast a toMSSQLConnection
.MSSQLConnection
MSSQLConnection. closeHandler(Handler<Void> handler)
MSSQLConnection
MSSQLConnection. exceptionHandler(Handler<Throwable> handler)
MSSQLConnection
MSSQLConnection. infoHandler(Handler<MSSQLInfo> handler)
Set a handler called when the connection receives an informational message from the server.static MSSQLConnection
MSSQLConnection. newInstance(MSSQLConnection arg)
MSSQLConnection
MSSQLConnection. prepare(String s)
MSSQLConnection
MSSQLConnection. prepare(String s, Handler<AsyncResult<PreparedStatement>> handler)
Methods in io.vertx.rxjava.mssqlclient that return types with arguments of type MSSQLConnection Modifier and Type Method Description static rx.Single<MSSQLConnection>
MSSQLConnection. rxConnect(Vertx vertx, MSSQLConnectOptions connectOptions)
Create a connection to SQL Server with the givenconnectOptions
.static rx.Single<MSSQLConnection>
MSSQLConnection. rxConnect(Vertx vertx, String connectionUri)
Likeconnect(io.vertx.rxjava.core.Vertx, io.vertx.mssqlclient.MSSQLConnectOptions, io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.rxjava.mssqlclient.MSSQLConnection>>)
with options built fromconnectionUri
.Method parameters in io.vertx.rxjava.mssqlclient with type arguments of type MSSQLConnection Modifier and Type Method Description static void
MSSQLConnection. connect(Vertx vertx, MSSQLConnectOptions connectOptions, Handler<AsyncResult<MSSQLConnection>> handler)
Create a connection to SQL Server with the givenconnectOptions
.static void
MSSQLConnection. connect(Vertx vertx, String connectionUri, Handler<AsyncResult<MSSQLConnection>> handler)
Likeconnect(io.vertx.rxjava.core.Vertx, io.vertx.mssqlclient.MSSQLConnectOptions, io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.rxjava.mssqlclient.MSSQLConnection>>)
with options built fromconnectionUri
.
-