Rails sử dụng gộp kết nối, vì vậy cách tốt nhất của bạn là sử dụng bí danh_method_chain cho 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