Uses of Class
io.vertx.mutiny.sqlclient.SqlConnection
Packages that use SqlConnection
Package
Description
-
Uses of SqlConnection in io.vertx.mutiny.db2client
Subclasses of SqlConnection in io.vertx.mutiny.db2clientMethods in io.vertx.mutiny.db2client with parameters of type SqlConnectionModifier and TypeMethodDescriptionstatic DB2ConnectionDB2Connection.cast(SqlConnection sqlConnection) Cast aSqlConnectiontoDB2Connection. -
Uses of SqlConnection in io.vertx.mutiny.mssqlclient
Subclasses of SqlConnection in io.vertx.mutiny.mssqlclientMethods in io.vertx.mutiny.mssqlclient with parameters of type SqlConnectionModifier and TypeMethodDescriptionstatic MSSQLConnectionMSSQLConnection.cast(SqlConnection sqlConnection) Cast aSqlConnectiontoMSSQLConnection. -
Uses of SqlConnection in io.vertx.mutiny.mysqlclient
Subclasses of SqlConnection in io.vertx.mutiny.mysqlclientModifier and TypeClassDescriptionclassAn interface which represents a connection to MySQL server.Methods in io.vertx.mutiny.mysqlclient with parameters of type SqlConnectionModifier and TypeMethodDescriptionstatic MySQLConnectionMySQLConnection.cast(SqlConnection sqlConnection) Cast aSqlConnectiontoMySQLConnection. -
Uses of SqlConnection in io.vertx.mutiny.oracleclient
Subclasses of SqlConnection in io.vertx.mutiny.oracleclientMethods in io.vertx.mutiny.oracleclient with parameters of type SqlConnectionModifier and TypeMethodDescriptionstatic OracleConnectionOracleConnection.cast(SqlConnection sqlConnection) Cast aSqlConnectiontoOracleConnection. -
Uses of SqlConnection in io.vertx.mutiny.pgclient
Subclasses of SqlConnection in io.vertx.mutiny.pgclientMethods in io.vertx.mutiny.pgclient with parameters of type SqlConnectionModifier and TypeMethodDescriptionstatic PgConnectionPgConnection.cast(SqlConnection sqlConnection) Cast aSqlConnectiontoPgConnection. -
Uses of SqlConnection in io.vertx.mutiny.sqlclient
Fields in io.vertx.mutiny.sqlclient with type parameters of type SqlConnectionMethods in io.vertx.mutiny.sqlclient that return SqlConnectionModifier and TypeMethodDescriptionSqlConnection.beginAndForget()Begin a transaction and returns aTransactionfor controlling and tracking this transaction.SqlConnection.closeAndForget()Close the client and release the associated resources.SqlConnection.closeHandler(Runnable handler) Set an handler called when the connection is closed.SqlConnection.exceptionHandler(Consumer<Throwable> handler) Set an handler called with connection errors.Pool.getConnectionAndAwait()Get a connection from the pool.static SqlConnectionSqlConnection.newInstance(io.vertx.sqlclient.SqlConnection delegate) Creates a new instance of theSqlConnection.SqlConnection.prepareAndForget(String sql) Create a prepared statement using the givensqlstring.SqlConnection.prepareAndForget(String sql, io.vertx.sqlclient.PrepareOptions options) Create a prepared statement using the givensqlstring.Methods in io.vertx.mutiny.sqlclient that return types with arguments of type SqlConnectionModifier and TypeMethodDescriptionio.smallrye.mutiny.Uni<SqlConnection>Pool.getConnection()Get a connection from the pool.Method parameters in io.vertx.mutiny.sqlclient with type arguments of type SqlConnectionModifier and TypeMethodDescriptionstatic <T> io.smallrye.mutiny.Multi<T>SqlClientHelper.usingConnectionMulti(Pool pool, Function<SqlConnection, io.smallrye.mutiny.Multi<T>> sourceSupplier) Generates aMultifromSqlConnectionoperations.static <T> io.smallrye.mutiny.Uni<T>SqlClientHelper.usingConnectionUni(Pool pool, Function<SqlConnection, io.smallrye.mutiny.Uni<T>> sourceSupplier) Generates aUnifromSqlConnectionoperations.ClientBuilder.withConnectHandler(Consumer<SqlConnection> handler) Set a handler called when the pool has established a connection to the database.<T> io.smallrye.mutiny.Uni<T>Pool.withConnection(Function<SqlConnection, io.smallrye.mutiny.Uni<T>> function) Get a connection from the pool and execute the givenfunction.<T> TPool.withConnectionAndAwait(Function<SqlConnection, io.smallrye.mutiny.Uni<T>> function) Get a connection from the pool and execute the givenfunction.<T> PoolPool.withConnectionAndForget(Function<SqlConnection, io.smallrye.mutiny.Uni<T>> function) Get a connection from the pool and execute the givenfunction.<T> io.smallrye.mutiny.Uni<T>Pool.withTransaction(io.vertx.sqlclient.TransactionPropagation txPropagation, Function<SqlConnection, io.smallrye.mutiny.Uni<T>> function) LikePool.withTransaction(Function)but allows for setting the mode, defining how the acquired connection is managed during the execution of the function.<T> io.smallrye.mutiny.Uni<T>Pool.withTransaction(Function<SqlConnection, io.smallrye.mutiny.Uni<T>> function) Execute the givenfunctionwithin a transaction.<T> TPool.withTransactionAndAwait(io.vertx.sqlclient.TransactionPropagation txPropagation, Function<SqlConnection, io.smallrye.mutiny.Uni<T>> function) LikePool.withTransaction(Function)but allows for setting the mode, defining how the acquired connection is managed during the execution of the function.<T> TPool.withTransactionAndAwait(Function<SqlConnection, io.smallrye.mutiny.Uni<T>> function) Execute the givenfunctionwithin a transaction.<T> PoolPool.withTransactionAndForget(io.vertx.sqlclient.TransactionPropagation txPropagation, Function<SqlConnection, io.smallrye.mutiny.Uni<T>> function) LikePool.withTransaction(Function)but allows for setting the mode, defining how the acquired connection is managed during the execution of the function.<T> PoolPool.withTransactionAndForget(Function<SqlConnection, io.smallrye.mutiny.Uni<T>> function) Execute the givenfunctionwithin a transaction.