Uses of Class
io.vertx.rxjava3.sqlclient.SqlConnection
Packages that use SqlConnection
Package
Description
-
Uses of SqlConnection in io.vertx.rxjava3.db2client
Subclasses of SqlConnection in io.vertx.rxjava3.db2clientMethods in io.vertx.rxjava3.db2client with parameters of type SqlConnectionModifier and TypeMethodDescriptionstatic DB2ConnectionDB2Connection.cast(SqlConnection sqlConnection) Cast a toDB2Connection. -
Uses of SqlConnection in io.vertx.rxjava3.jdbcclient
Subclasses of SqlConnection in io.vertx.rxjava3.jdbcclient -
Uses of SqlConnection in io.vertx.rxjava3.mssqlclient
Subclasses of SqlConnection in io.vertx.rxjava3.mssqlclientMethods in io.vertx.rxjava3.mssqlclient with parameters of type SqlConnectionModifier and TypeMethodDescriptionstatic MSSQLConnectionMSSQLConnection.cast(SqlConnection sqlConnection) Cast a toMSSQLConnection. -
Uses of SqlConnection in io.vertx.rxjava3.mysqlclient
Subclasses of SqlConnection in io.vertx.rxjava3.mysqlclientModifier and TypeClassDescriptionclassAn interface which represents a connection to MySQL server.Methods in io.vertx.rxjava3.mysqlclient with parameters of type SqlConnectionModifier and TypeMethodDescriptionstatic MySQLConnectionMySQLConnection.cast(SqlConnection sqlConnection) Cast a toMySQLConnection. -
Uses of SqlConnection in io.vertx.rxjava3.oracleclient
Subclasses of SqlConnection in io.vertx.rxjava3.oracleclientMethods in io.vertx.rxjava3.oracleclient with parameters of type SqlConnectionModifier and TypeMethodDescriptionstatic OracleConnectionOracleConnection.cast(SqlConnection sqlConnection) Cast a toOracleConnection. -
Uses of SqlConnection in io.vertx.rxjava3.pgclient
Subclasses of SqlConnection in io.vertx.rxjava3.pgclientMethods in io.vertx.rxjava3.pgclient with parameters of type SqlConnectionModifier and TypeMethodDescriptionstatic PgConnectionPgConnection.cast(SqlConnection sqlConnection) Cast a toPgConnection. -
Uses of SqlConnection in io.vertx.rxjava3.sqlclient
Fields in io.vertx.rxjava3.sqlclient with type parameters of type SqlConnectionModifier and TypeFieldDescriptionstatic final io.vertx.lang.rx.TypeArg<SqlConnection> SqlConnection.__TYPE_ARGMethods in io.vertx.rxjava3.sqlclient that return SqlConnectionModifier and TypeMethodDescriptionSqlConnection.closeHandler(Handler<Void> handler) Set an handler called when the connection is closed.SqlConnection.exceptionHandler(Handler<Throwable> handler) Set an handler called with connection errors.static SqlConnectionSqlConnection.newInstance(SqlConnection arg) Methods in io.vertx.rxjava3.sqlclient that return types with arguments of type SqlConnectionModifier and TypeMethodDescriptionPool.getConnection()Get a connection from the pool.Pool.rxGetConnection()Get a connection from the pool.Method parameters in io.vertx.rxjava3.sqlclient with type arguments of type SqlConnectionModifier and TypeMethodDescription<T> Maybe<T> Pool.rxWithConnection(Function<SqlConnection, Maybe<T>> function) Get a connection from the pool and execute the givenfunction.<T> Maybe<T> Pool.rxWithTransaction(TransactionPropagation txPropagation, Function<SqlConnection, Maybe<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> Maybe<T> Pool.rxWithTransaction(Function<SqlConnection, Maybe<T>> function) Execute the givenfunctionwithin a transaction.ClientBuilder.withConnectHandler(Handler<SqlConnection> handler) Set a handler called when the pool has established a connection to the database.<T> Maybe<T> Pool.withConnection(Function<SqlConnection, Maybe<T>> function) Get a connection from the pool and execute the givenfunction.<T> Maybe<T> Pool.withTransaction(TransactionPropagation txPropagation, Function<SqlConnection, Maybe<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> Maybe<T> Pool.withTransaction(Function<SqlConnection, Maybe<T>> function) Execute the givenfunctionwithin a transaction.