Interface MSSQLBuilder


  • public interface MSSQLBuilder
    Entry point for building MSSQL clients.
    • Method Detail

      • pool

        static Pool pool​(Handler<ClientBuilder<Pool>> block)
        Build a pool with the specified block argument. The block argument is usually a lambda that configures the provided builder

        Example usage: Pool pool = PgBuilder.pool(builder -> builder.connectingTo(connectOptions));

        Returns:
        the pool as configured by the code block
      • pool

        static ClientBuilder<Pool> pool()
        Provide a builder for MSSQL pool of connections

        Example usage: Pool pool = PgBuilder.pool().connectingTo(connectOptions).build()