रेल कनेक्शन पूलिंग का उपयोग करती है, इसलिए आपका सबसे अच्छा दांव ActiveRecord::ConnectionAdapters::ConnectionPool#new_connection
के लिए एक alias_method_chain का उपयोग करना है।module ActiveRecord
Module ConnectionAdapters
class ConnectionPool
alias_method_chain :new_connection, :my_stuff
private
def new_connection_with_my_stuff
c = new_connection_without_my_stuff
# Do your stuff with
# c.exec(<your sql command>)
c
end
end
end
end