Class JDBCConnection

    • Field Detail

      • __TYPE_ARG

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

      • JDBCConnection

        public JDBCConnection​(Object delegate)
    • Method Detail

      • getTransactionIsolation

        public Future<Integer> getTransactionIsolation()
      • rxGetTransactionIsolation

        public Single<Integer> rxGetTransactionIsolation()
      • setTransactionIsolation

        public Future<Void> setTransactionIsolation​(int isolationLevel)
      • rxSetTransactionIsolation

        public Completable rxSetTransactionIsolation​(int isolationLevel)
      • setQueryTimeout

        public JDBCConnection setQueryTimeout​(int timeoutInSeconds)
        Sets a connection wide query timeout. It can be over-written at any time and becomes active on the next query call.
        Parameters:
        timeoutInSeconds - the max amount of seconds the query can take to execute.
        Returns: