# File lib/active_record/connection_adapters/oci_adapter.rb, line 562
    def reset!
      logoff rescue nil
      begin
        @connection = @factory.new_connection @username, @password, @host
        __setobj__ @connection
        @active = true
      rescue
        @active = false
        raise
      end
    end