Method: ActiveRecord::ConnectionAdapters::AbstractAdapter#reset!

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

#reset!Object

Reset the state of this connection, directing the DBMS to clear transactions and other connection-related server-side state. Usually a database-dependent operation.

The default implementation does nothing; the implementation should be overridden by concrete adapters.



139
140
141
# File 'lib/active_record/connection_adapters/abstract_adapter.rb', line 139

def reset!
  # this should be overridden by concrete adapters
end