Rails usa la agrupación de conexiones, por lo que lo mejor es usar una cadena_método_alias para ActiveRecord::ConnectionAdapters::ConnectionPool#new_connection
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