public interface MSSQLBuilder
Modifier and Type | Method and Description |
---|---|
static ClientBuilder<Pool> |
pool()
Provide a builder for MSSQL pool of connections
|
static Pool |
pool(Handler<ClientBuilder<Pool>> block)
Build a pool with the specified
block argument. |
static Pool pool(Handler<ClientBuilder<Pool>> block)
block
argument.
The block
argument is usually a lambda that configures the provided builder
Example usage: Pool pool = PgBuilder.pool(builder -> builder.connectingTo(connectOptions));
block
static ClientBuilder<Pool> pool()
Example usage: Pool pool = PgBuilder.pool().connectingTo(connectOptions).build()
Copyright © 2024 Eclipse. All rights reserved.