sql >> Database >  >> RDS >> PostgreSQL

Hoe voer ik query's uit op een DB-verbinding in Rails?

Rails maakt gebruik van pooling van verbindingen, dus u kunt het beste een alias_method_chain gebruiken voor 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


  1. Hoe TYPE TABLE OF VARCHAR2(5) in Java toe te wijzen?

  2. Verwijder laatste teken uit string in sql plus

  3. Database implementeren met updates

  4. Oracle Apex:maak een voortgangsbalk bij het wachten op resultaat