aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record
diff options
context:
space:
mode:
Diffstat (limited to 'activerecord/lib/active_record')
-rw-r--r--activerecord/lib/active_record/connection_adapters/sqlserver_adapter.rb19
1 files changed, 8 insertions, 11 deletions
diff --git a/activerecord/lib/active_record/connection_adapters/sqlserver_adapter.rb b/activerecord/lib/active_record/connection_adapters/sqlserver_adapter.rb
index 78486a2a1a..9320717b34 100644
--- a/activerecord/lib/active_record/connection_adapters/sqlserver_adapter.rb
+++ b/activerecord/lib/active_record/connection_adapters/sqlserver_adapter.rb
@@ -207,24 +207,21 @@ module ActiveRecord
# Returns true if the connection is active.
def active?
- @connection.execute("SELECT 1") {|sth|}
+ @connection.execute("SELECT 1") { }
true
- rescue DBI::DatabaseError => e
+ rescue DBI::DatabaseError, DBI::InterfaceError
false
end
- # Reconnects to the database.
+ # Reconnects to the database, returns false if no connection could be made.
def reconnect!
- begin
- @connection.disconnect
- @connection = DBI.connect(*@connection_options)
- rescue DBI::DatabaseError => e
- @logger.warn "#{adapter_name} automatic reconnection failed: #{e.message}"
- end
+ @connection.disconnect rescue nil
+ @connection = DBI.connect(*@connection_options)
+ rescue DBI::DatabaseError => e
+ @logger.warn "#{adapter_name} reconnection failed: #{e.message}" if @logger
+ false
end
-
-
def select_all(sql, name = nil)
select(sql, name)
end