Class: OCI8EnhancedAutoRecover
- Defined in:
- lib/active_record/connection_adapters/oracle_enhanced_oci_connection.rb
Overview
The OCI8AutoRecover class enhances the OCI8 driver with auto-recover and reset functionality. If a call to #exec fails, and autocommit is turned on (ie., we’re not in the middle of a longer transaction), it will automatically reconnect and try again. If autocommit is turned off, this would be dangerous (as the earlier part of the implied transaction may have failed silently if the connection died) – so instead the connection is marked as dead, to be reconnected on it’s next use. :stopdoc:
Constant Summary collapse
- LOST_CONNECTION_ERROR_CODES =
ORA-00028: your session has been killed ORA-01012: not logged on ORA-03113: end-of-file on communication channel ORA-03114: not connected to ORACLE ORA-03135: connection lost contact
[ 28, 1012, 3113, 3114, 3135 ]
- @@auto_retry =
false
Instance Attribute Summary collapse
-
#active ⇒ Object
(also: #active?)
:nodoc:.
Instance Method Summary collapse
-
#describe(name) ⇒ Object
:nodoc:.
-
#exec(sql, *bindvars, &block) ⇒ Object
Adds auto-recovery functionality.
-
#initialize(config, factory) ⇒ OCI8EnhancedAutoRecover
constructor
:nodoc:.
-
#ping ⇒ Object
Checks connection, returns true if active.
-
#reset! ⇒ Object
Resets connection, by logging off and creating a new connection.
Constructor Details
#initialize(config, factory) ⇒ OCI8EnhancedAutoRecover
:nodoc:
324 325 326 327 328 329 330 |
# File 'lib/active_record/connection_adapters/oracle_enhanced_oci_connection.rb', line 324 def initialize(config, factory) #:nodoc: @active = true @config = config @factory = factory @connection = @factory.new_connection @config super @connection end |
Instance Attribute Details
#active ⇒ Object Also known as: active?
:nodoc:
315 316 317 |
# File 'lib/active_record/connection_adapters/oracle_enhanced_oci_connection.rb', line 315 def active @active end |
Instance Method Details
#describe(name) ⇒ Object
:nodoc:
383 384 385 |
# File 'lib/active_record/connection_adapters/oracle_enhanced_oci_connection.rb', line 383 def describe(name) #:nodoc: @connection.describe(name) end |
#exec(sql, *bindvars, &block) ⇒ Object
Adds auto-recovery functionality.
366 367 368 369 370 371 372 373 374 375 376 377 378 379 |
# File 'lib/active_record/connection_adapters/oracle_enhanced_oci_connection.rb', line 366 def exec(sql, *bindvars, &block) #:nodoc: should_retry = self.class.auto_retry? && autocommit? begin @connection.exec(sql, *bindvars, &block) rescue OCIException => e raise unless e.is_a?(OCIError) && LOST_CONNECTION_ERROR_CODES.include?(e.code) @active = false raise unless should_retry should_retry = false reset! rescue nil retry end end |
#ping ⇒ Object
Checks connection, returns true if active. Note that ping actively checks the connection, while #active? simply returns the last known state.
335 336 337 338 339 340 341 |
# File 'lib/active_record/connection_adapters/oracle_enhanced_oci_connection.rb', line 335 def ping #:nodoc: @connection.exec("select 1 from dual") { |r| nil } @active = true rescue @active = false raise end |
#reset! ⇒ Object
Resets connection, by logging off and creating a new connection.
344 345 346 347 348 349 350 351 352 353 354 |
# File 'lib/active_record/connection_adapters/oracle_enhanced_oci_connection.rb', line 344 def reset! #:nodoc: logoff rescue nil begin @connection = @factory.new_connection @config __setobj__ @connection @active = true rescue @active = false raise end end |