module ArJdbc::Abstract::ConnectionManagement

Public Instance Methods

active?() click to toggle source
# File lib/arjdbc/abstract/connection_management.rb, line 5
def active?
  @connection.active?
end
disconnect!() click to toggle source
Calls superclass method
# File lib/arjdbc/abstract/connection_management.rb, line 9
def disconnect!
  super
  @connection.disconnect!
end
reconnect!() click to toggle source
Calls superclass method
# File lib/arjdbc/abstract/connection_management.rb, line 14
def reconnect!
  super
  @connection.reconnect! # handles adapter.configure_connection
end