Flowdock
method

sql_for

Importance_0
v5.0.0.1 - Show latest stable - 0 notes - Class: PartialQuery
sql_for(binds, connection) public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activerecord/lib/active_record/statement_cache.rb, line 50
      def sql_for(binds, connection)
        val = @values.dup
        binds = connection.prepare_binds_for_database(binds)
        @indexes.each { |i| val[i] = connection.quote(binds.shift) }
        val.join
      end
Register or log in to add new notes.