Method: ActiveRecord::ConnectionAdapters::AbstractAdapter#requires_reloading?

Defined in:
lib/active_record/connection_adapters/abstract_adapter.rb

#requires_reloading?Boolean

Returns true if its required to reload the connection between requests for development mode. This is not the case for Ruby/MySQL and it’s not necessary for any adapters except SQLite.

Returns:

  • (Boolean)


145
146
147
# File 'lib/active_record/connection_adapters/abstract_adapter.rb', line 145

def requires_reloading?
  false
end