reset!()
public
Resets connection, by logging off and creating a new connection.
# File activerecord/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