module Sequel::ActiveRecordConnection::Oracle

Public Instance Methods

synchronize(*) { |raw_oci_connection| ... } click to toggle source
Calls superclass method
# File lib/sequel/extensions/activerecord_connection/oracle.rb, line 6
def synchronize(*)
  super do |conn|
    # required for prepared statements
    Utils.add_prepared_statements_cache(conn.raw_oci_connection)

    yield conn.raw_oci_connection
  end
end