reset!()
public
Resets connection, by logging off and creating a new connection.
# File activerecord/lib/active_record/connection_adapters/oracle_adapter.rb, line 614
def reset!
logoff rescue nil
begin
@connection = @factory.new_connection @username, @password, @database
__setobj__ @connection
@active = true
rescue
@active = false
raise
end
end