class Apartment::Adapters::AbstractJDBCAdapter

JDBC Abstract adapter

def multi_tenantify_with_tenant_db_name(config, tenant)

def multi_tenantify_with_tenant_db_name(config, tenant)
  config[:url] = "#{config[:url].gsub(%r{(\S+)/.+$}, '\1')}/#{environmentify(tenant)}"
end

def rescue_from

def rescue_from
  ActiveRecord::JDBCError
end