| Package | Description |
|---|---|
| io.vertx.mssqlclient |
| Modifier and Type | Method and Description |
|---|---|
static MSSQLConnection |
MSSQLConnection.cast(SqlConnection sqlConnection)
Cast a
SqlConnection to MSSQLConnection. |
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.
|
MSSQLConnection |
MSSQLConnection.prepare(String s,
Handler<AsyncResult<PreparedStatement>> handler) |
| Modifier and Type | Method and Description |
|---|---|
static Future<MSSQLConnection> |
MSSQLConnection.connect(Vertx vertx,
MSSQLConnectOptions connectOptions)
Like
connect(Vertx, MSSQLConnectOptions, Handler) but returns a Future of the asynchronous result |
static Future<MSSQLConnection> |
MSSQLConnection.connect(Vertx vertx,
String connectionUri)
Like
connect(Vertx, String, Handler) but returns a Future of the asynchronous result |
| Modifier and Type | Method and Description |
|---|---|
static void |
MSSQLConnection.connect(Vertx vertx,
MSSQLConnectOptions connectOptions,
Handler<AsyncResult<MSSQLConnection>> handler)
Create a connection to SQL Server with the given
connectOptions. |
static void |
MSSQLConnection.connect(Vertx vertx,
String connectionUri,
Handler<AsyncResult<MSSQLConnection>> handler)
Like
connect(Vertx, MSSQLConnectOptions, Handler) with options built from connectionUri. |
Copyright © 2024 Eclipse. All rights reserved.