Sha256: 8551a51a8a64291fc670c0a22ba9733e4199f61de1126d8c7a4110407316b344

Contents?: true

Size: 335 Bytes

Versions: 1

Compression:

Stored size: 335 Bytes

Contents

module ArJdbc
  module Abstract
    module ConnectionManagement

      def active?
        @connection.active?
      end

      def disconnect!
        super
        @connection.disconnect!
      end

      def reconnect!
        super
        @connection.reconnect! # handles adapter.configure_connection
      end

    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
activerecord-jdbc-adapter-51.0 lib/arjdbc/abstract/connection_management.rb