Modifier and Type | Interface and Description |
---|---|
interface |
DB2Connection
A connection to DB2 server.
|
Modifier and Type | Method and Description |
---|---|
static DB2Connection |
DB2Connection.cast(SqlConnection sqlConnection)
Cast a
SqlConnection to DB2Connection . |
Modifier and Type | Method and Description |
---|---|
DB2Pool |
DB2Pool.connectHandler(Handler<SqlConnection> handler) |
DB2Pool |
DB2Pool.connectionProvider(java.util.function.Function<Context,Future<SqlConnection>> provider) |
Modifier and Type | Interface and Description |
---|---|
interface |
MSSQLConnection
A connection to Microsoft SQL Server.
|
Modifier and Type | Method and Description |
---|---|
static MSSQLConnection |
MSSQLConnection.cast(SqlConnection sqlConnection)
Cast a
SqlConnection to MSSQLConnection . |
Modifier and Type | Method and Description |
---|---|
MSSQLPool |
MSSQLPool.connectHandler(Handler<SqlConnection> handler) |
MSSQLPool |
MSSQLPool.connectionProvider(java.util.function.Function<Context,Future<SqlConnection>> provider) |
Modifier and Type | Interface and Description |
---|---|
interface |
MySQLConnection
An interface which represents a connection to MySQL server.
|
Modifier and Type | Method and Description |
---|---|
static MySQLConnection |
MySQLConnection.cast(SqlConnection sqlConnection)
Cast a
SqlConnection to MySQLConnection . |
Modifier and Type | Method and Description |
---|---|
MySQLPool |
MySQLPool.connectHandler(Handler<SqlConnection> handler) |
MySQLPool |
MySQLPool.connectionProvider(java.util.function.Function<Context,Future<SqlConnection>> provider) |
Modifier and Type | Interface and Description |
---|---|
interface |
PgConnection
A connection to Postgres.
|
Modifier and Type | Method and Description |
---|---|
static PgConnection |
PgConnection.cast(SqlConnection sqlConnection)
Cast a
SqlConnection to PgConnection . |
Modifier and Type | Method and Description |
---|---|
PgPool |
PgPool.connectHandler(Handler<SqlConnection> handler) |
PgPool |
PgPool.connectionProvider(java.util.function.Function<Context,Future<SqlConnection>> provider) |
Modifier and Type | Method and Description |
---|---|
SqlConnection |
SqlConnection.getDelegate() |
Modifier and Type | Method and Description |
---|---|
static SqlConnection |
SqlConnection.newInstance(SqlConnection arg) |
Constructor and Description |
---|
SqlConnection(SqlConnection delegate) |
Modifier and Type | Method and Description |
---|---|
SqlConnection |
SqlConnection.getDelegate() |
Modifier and Type | Method and Description |
---|---|
static SqlConnection |
SqlConnection.newInstance(SqlConnection arg) |
Constructor and Description |
---|
SqlConnection(SqlConnection delegate) |
Modifier and Type | Method and Description |
---|---|
SqlConnection |
SqlConnection.getDelegate() |
Modifier and Type | Method and Description |
---|---|
static SqlConnection |
SqlConnection.newInstance(SqlConnection arg) |
Constructor and Description |
---|
SqlConnection(SqlConnection delegate) |
Modifier and Type | Method and Description |
---|---|
SqlConnection |
SqlConnection.closeHandler(Handler<Void> handler)
Set an handler called when the connection is closed.
|
SqlConnection |
SqlConnection.exceptionHandler(Handler<Throwable> handler)
Set an handler called with connection errors.
|
SqlConnection |
SqlConnection.prepare(String sql,
Handler<AsyncResult<PreparedStatement>> handler)
Create a prepared statement using the given
sql string. |
SqlConnection |
SqlConnection.prepare(String sql,
PrepareOptions options,
Handler<AsyncResult<PreparedStatement>> handler)
Create a prepared statement using the given
sql string. |
Modifier and Type | Method and Description |
---|---|
Future<SqlConnection> |
Pool.getConnection()
Like
Pool.getConnection(Handler) but returns a Future of the asynchronous result |
Modifier and Type | Method and Description |
---|---|
Pool |
Pool.connectHandler(Handler<SqlConnection> handler)
Set an handler called when the pool has established a connection to the database.
|
Pool |
Pool.connectionProvider(java.util.function.Function<Context,Future<SqlConnection>> provider)
Replace the default pool connection provider, the new
provider returns a future connection for a
given Context . |
void |
Pool.getConnection(Handler<AsyncResult<SqlConnection>> handler)
Get a connection from the pool.
|
default <T> Future<T> |
Pool.withConnection(java.util.function.Function<SqlConnection,Future<T>> function)
Like
Pool.withConnection(Function, Handler) but returns a Future of the asynchronous result |
default <T> void |
Pool.withConnection(java.util.function.Function<SqlConnection,Future<T>> function,
Handler<AsyncResult<T>> handler)
Get a connection from the pool and execute the given
function . |
default <T> Future<T> |
Pool.withTransaction(java.util.function.Function<SqlConnection,Future<T>> function)
Like
Pool.withTransaction(Function, Handler) but returns a Future of the asynchronous result |
default <T> void |
Pool.withTransaction(java.util.function.Function<SqlConnection,Future<T>> function,
Handler<AsyncResult<T>> handler)
Execute the given
function within a transaction. |
Modifier and Type | Method and Description |
---|---|
Future<SqlConnection> |
ConnectionFactory.connect(Context context)
Create a connection using the given
context . |
Copyright © 2023 Eclipse. All rights reserved.