method

resolved_adapter

Method not available on this version

This method is only available on newer versions. The first available version (v7.2.3) is shown here.

resolved_adapter()
private

No documentation available.

# File activerecord/lib/active_record/database_configurations/connection_url_resolver.rb, line 82
        def resolved_adapter
          adapter = uri.scheme && @uri.scheme.tr("-", "_")
          if adapter && ActiveRecord.protocol_adapters[adapter]
            adapter = ActiveRecord.protocol_adapters[adapter]
          end
          adapter
        end