Class MSSQLBuilder


  • public class MSSQLBuilder
    extends Object
    Entry point for building MSSQL clients.

    NOTE: This class has been automatically generated from the original non RX-ified interface using Vert.x codegen.

    • Field Detail

      • __TYPE_ARG

        public static final io.vertx.lang.rx.TypeArg<MSSQLBuilder> __TYPE_ARG
    • Constructor Detail

      • MSSQLBuilder

        public MSSQLBuilder​(MSSQLBuilder delegate)
      • MSSQLBuilder

        public MSSQLBuilder​(Object delegate)
    • Method Detail

      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class Object
      • pool

        public 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));

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

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

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

        Returns: