public interface MSSQLConnection extends SqlConnection
begin, begin, close, databaseMetadata, isSSL, prepareclose, preparedQuery, querystatic void connect(Vertx vertx, MSSQLConnectOptions connectOptions, Handler<AsyncResult<MSSQLConnection>> handler)
connectOptions.vertx - the vertx instanceconnectOptions - the options for the connectionhandler - the handler called with the connection or the failurestatic Future<MSSQLConnection> connect(Vertx vertx, MSSQLConnectOptions connectOptions)
connect(Vertx, MSSQLConnectOptions, Handler) but returns a Future of the asynchronous resultstatic void connect(Vertx vertx, String connectionUri, Handler<AsyncResult<MSSQLConnection>> handler)
connect(Vertx, MSSQLConnectOptions, Handler) with options built from connectionUri.static Future<MSSQLConnection> connect(Vertx vertx, String connectionUri)
connect(Vertx, String, Handler) but returns a Future of the asynchronous resultMSSQLConnection prepare(String s, Handler<AsyncResult<PreparedStatement>> handler)
prepare in interface SqlConnectionMSSQLConnection exceptionHandler(Handler<Throwable> handler)
exceptionHandler in interface SqlConnectionMSSQLConnection closeHandler(Handler<Void> handler)
closeHandler in interface SqlConnectionstatic MSSQLConnection cast(SqlConnection sqlConnection)
SqlConnection to MSSQLConnection.
This is mostly useful for Vert.x generated APIs like RxJava/Mutiny.sqlConnection - the connection to castinstanceCopyright © 2021 Eclipse. All rights reserved.